| OLD | NEW |
| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 # Changes settings for Chromium build. | 216 # Changes settings for Chromium build. |
| 217 'WEBRTC_CHROMIUM_BUILD', | 217 'WEBRTC_CHROMIUM_BUILD', |
| 218 'LOGGING_INSIDE_WEBRTC', | 218 'LOGGING_INSIDE_WEBRTC', |
| 219 ], | 219 ], |
| 220 'include_dirs': [ | 220 'include_dirs': [ |
| 221 # Include the top-level directory when building in Chrome, so we can | 221 # Include the top-level directory when building in Chrome, so we can |
| 222 # use full paths (e.g. headers inside testing/ or third_party/). | 222 # use full paths (e.g. headers inside testing/ or third_party/). |
| 223 '<(DEPTH)', | 223 '<(DEPTH)', |
| 224 # The overrides must be included before the WebRTC root as that's the | 224 # The overrides must be included before the WebRTC root as that's the |
| 225 # mechanism for selecting the override headers in Chromium. | 225 # mechanism for selecting the override headers in Chromium. |
| 226 '../overrides', | 226 '../../webrtc_overrides', |
| 227 # The WebRTC root is needed to allow includes in the WebRTC code base | 227 # The WebRTC root is needed to allow includes in the WebRTC code base |
| 228 # to be prefixed with webrtc/. | 228 # to be prefixed with webrtc/. |
| 229 '../..', | 229 '../..', |
| 230 ], | 230 ], |
| 231 }, { | 231 }, { |
| 232 # Include the top-level dir so the WebRTC code can use full paths. | 232 # Include the top-level dir so the WebRTC code can use full paths. |
| 233 'include_dirs': [ | 233 'include_dirs': [ |
| 234 '../..', | 234 '../..', |
| 235 ], | 235 ], |
| 236 'conditions': [ | 236 'conditions': [ |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 # Changes settings for Mozilla build. | 397 # Changes settings for Mozilla build. |
| 398 'WEBRTC_MOZILLA_BUILD', | 398 'WEBRTC_MOZILLA_BUILD', |
| 399 ], | 399 ], |
| 400 }], | 400 }], |
| 401 ['build_with_chromium==1', { | 401 ['build_with_chromium==1', { |
| 402 'defines': [ | 402 'defines': [ |
| 403 # Changes settings for Chromium build. | 403 # Changes settings for Chromium build. |
| 404 'WEBRTC_CHROMIUM_BUILD', | 404 'WEBRTC_CHROMIUM_BUILD', |
| 405 ], | 405 ], |
| 406 'include_dirs': [ | 406 'include_dirs': [ |
| 407 # overrides must be included first as that is the mechanism for | 407 # The overrides must be included first as that is the mechanism for |
| 408 # selecting the override headers in Chromium. | 408 # selecting the override headers in Chromium. |
| 409 '../overrides', | 409 '../../webrtc_overrides', |
| 410 '../..', | 410 '../..', |
| 411 ], | 411 ], |
| 412 }, { | 412 }, { |
| 413 'include_dirs': [ | 413 'include_dirs': [ |
| 414 '../..', | 414 '../..', |
| 415 ], | 415 ], |
| 416 }], | 416 }], |
| 417 ['OS=="mac"', { | 417 ['OS=="mac"', { |
| 418 'defines': [ | 418 'defines': [ |
| 419 'WEBRTC_MAC', | 419 'WEBRTC_MAC', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 446 # of a more specific macro. | 446 # of a more specific macro. |
| 447 'defines': [ | 447 'defines': [ |
| 448 'WEBRTC_POSIX', | 448 'WEBRTC_POSIX', |
| 449 ], | 449 ], |
| 450 }], | 450 }], |
| 451 ], | 451 ], |
| 452 }, | 452 }, |
| 453 }, # target_defaults | 453 }, # target_defaults |
| 454 } | 454 } |
| 455 | 455 |
| OLD | NEW |