Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(599)

Side by Side Diff: webrtc/build/common.gypi

Issue 2153563003: Move WEBRTC_BUILD_LIBEVENT definition to base/BUILD.gn and base/base.gyp. This use all_dependent_co… (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fixed gn and gyp format. Created 4 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « webrtc/base/base.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2012 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 # This file contains common settings for building WebRTC components. 9 # This file contains common settings for building WebRTC components.
10 10
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after
337 }], 337 }],
338 ['clang==1', { 338 ['clang==1', {
339 'cflags': [ 339 'cflags': [
340 '-Wimplicit-fallthrough', 340 '-Wimplicit-fallthrough',
341 '-Wthread-safety', 341 '-Wthread-safety',
342 '-Winconsistent-missing-override', 342 '-Winconsistent-missing-override',
343 ], 343 ],
344 }], 344 }],
345 ], 345 ],
346 }], 346 }],
347 ['enable_libevent==1', {
348 'defines': [
349 'WEBRTC_BUILD_LIBEVENT',
350 ],
351 }],
352 ['target_arch=="arm64"', { 347 ['target_arch=="arm64"', {
353 'defines': [ 348 'defines': [
354 'WEBRTC_ARCH_ARM64', 349 'WEBRTC_ARCH_ARM64',
355 'WEBRTC_HAS_NEON', 350 'WEBRTC_HAS_NEON',
356 ], 351 ],
357 }], 352 }],
358 ['target_arch=="arm"', { 353 ['target_arch=="arm"', {
359 'defines': [ 354 'defines': [
360 'WEBRTC_ARCH_ARM', 355 'WEBRTC_ARCH_ARM',
361 ], 356 ],
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
585 }], 580 }],
586 ['OS=="freebsd"', { 581 ['OS=="freebsd"', {
587 'defines': [ 582 'defines': [
588 'FREEBSD', 583 'FREEBSD',
589 ], 584 ],
590 }], 585 }],
591 ], 586 ],
592 }, 587 },
593 }, # target_defaults 588 }, # target_defaults
594 } 589 }
OLDNEW
« no previous file with comments | « webrtc/base/base.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698