| OLD | NEW |
| 1 # Copyright (c) 2014 The WebRTC project authors. All Rights Reserved. | 1 # Copyright (c) 2014 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 import("//build/config/crypto.gni") | 9 import("//build/config/crypto.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 | 325 |
| 326 if (is_posix) { | 326 if (is_posix) { |
| 327 sources += [ | 327 sources += [ |
| 328 "unixfilesystem.cc", | 328 "unixfilesystem.cc", |
| 329 "unixfilesystem.h", | 329 "unixfilesystem.h", |
| 330 ] | 330 ] |
| 331 } | 331 } |
| 332 | 332 |
| 333 if (build_with_chromium) { | 333 if (build_with_chromium) { |
| 334 sources += [ | 334 sources += [ |
| 335 "../overrides/webrtc/base/logging.cc", | 335 "../../webrtc_overrides/webrtc/base/logging.cc", |
| 336 "../overrides/webrtc/base/logging.h", | 336 "../../webrtc_overrides/webrtc/base/logging.h", |
| 337 ] | 337 ] |
| 338 | 338 |
| 339 deps += [ "..:webrtc_common" ] | 339 deps += [ "..:webrtc_common" ] |
| 340 | 340 |
| 341 if (is_win) { | 341 if (is_win) { |
| 342 sources += [ "../overrides/webrtc/base/win32socketinit.cc" ] | 342 sources += [ "../../webrtc_overrides/webrtc/base/win32socketinit.cc" ] |
| 343 } | 343 } |
| 344 | 344 |
| 345 include_dirs = [ | 345 include_dirs = [ |
| 346 "../overrides", | 346 "../../webrtc_overrides", |
| 347 "../../boringssl/src/include", | 347 "../../boringssl/src/include", |
| 348 ] | 348 ] |
| 349 | 349 |
| 350 public_configs += [ ":rtc_base_chromium_config" ] | 350 public_configs += [ ":rtc_base_chromium_config" ] |
| 351 } else { | 351 } else { |
| 352 sources += [ | 352 sources += [ |
| 353 "bandwidthsmoother.cc", | 353 "bandwidthsmoother.cc", |
| 354 "bandwidthsmoother.h", | 354 "bandwidthsmoother.h", |
| 355 "bind.h", | 355 "bind.h", |
| 356 "bind.h.pump", | 356 "bind.h.pump", |
| (...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 627 "linux.cc", | 627 "linux.cc", |
| 628 "linux.h", | 628 "linux.h", |
| 629 ] | 629 ] |
| 630 } | 630 } |
| 631 | 631 |
| 632 if (is_nacl) { | 632 if (is_nacl) { |
| 633 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 633 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 634 defines += [ "timezone=_timezone" ] | 634 defines += [ "timezone=_timezone" ] |
| 635 } | 635 } |
| 636 } | 636 } |
| OLD | NEW |