| 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 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 401 # Changes settings for Mozilla build. | 401 # Changes settings for Mozilla build. |
| 402 'WEBRTC_MOZILLA_BUILD', | 402 'WEBRTC_MOZILLA_BUILD', |
| 403 ], | 403 ], |
| 404 }], | 404 }], |
| 405 ['build_with_chromium==1', { | 405 ['build_with_chromium==1', { |
| 406 'defines': [ | 406 'defines': [ |
| 407 # Changes settings for Chromium build. | 407 # Changes settings for Chromium build. |
| 408 'WEBRTC_CHROMIUM_BUILD', | 408 'WEBRTC_CHROMIUM_BUILD', |
| 409 ], | 409 ], |
| 410 'include_dirs': [ | 410 'include_dirs': [ |
| 411 # overrides must be included first as that is the mechanism for | 411 # The overrides must be included first as that is the mechanism for |
| 412 # selecting the override headers in Chromium. | 412 # selecting the override headers in Chromium. |
| 413 '../overrides', | 413 '../../webrtc_overrides', |
| 414 '../..', | 414 '../..', |
| 415 ], | 415 ], |
| 416 }, { | 416 }, { |
| 417 'include_dirs': [ | 417 'include_dirs': [ |
| 418 '../..', | 418 '../..', |
| 419 ], | 419 ], |
| 420 }], | 420 }], |
| 421 ['OS=="mac"', { | 421 ['OS=="mac"', { |
| 422 'defines': [ | 422 'defines': [ |
| 423 'WEBRTC_MAC', | 423 'WEBRTC_MAC', |
| (...skipping 26 matching lines...) Expand all Loading... |
| 450 # of a more specific macro. | 450 # of a more specific macro. |
| 451 'defines': [ | 451 'defines': [ |
| 452 'WEBRTC_POSIX', | 452 'WEBRTC_POSIX', |
| 453 ], | 453 ], |
| 454 }], | 454 }], |
| 455 ], | 455 ], |
| 456 }, | 456 }, |
| 457 }, # target_defaults | 457 }, # target_defaults |
| 458 } | 458 } |
| 459 | 459 |
| OLD | NEW |