| 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 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 | 530 |
| 531 all_dependent_configs = [ ":mac_config" ] | 531 all_dependent_configs = [ ":mac_config" ] |
| 532 | 532 |
| 533 if (current_cpu == "x86") { | 533 if (current_cpu == "x86") { |
| 534 all_dependent_configs += [ ":mac_x86_config" ] | 534 all_dependent_configs += [ ":mac_x86_config" ] |
| 535 } | 535 } |
| 536 } | 536 } |
| 537 | 537 |
| 538 if (is_win) { | 538 if (is_win) { |
| 539 sources += [ | 539 sources += [ |
| 540 "schanneladapter.cc", | |
| 541 "schanneladapter.h", | |
| 542 "win32.cc", | 540 "win32.cc", |
| 543 "win32.h", | 541 "win32.h", |
| 544 "win32filesystem.cc", | 542 "win32filesystem.cc", |
| 545 "win32filesystem.h", | 543 "win32filesystem.h", |
| 546 "win32securityerrors.cc", | 544 "win32securityerrors.cc", |
| 547 "win32window.cc", | 545 "win32window.cc", |
| 548 "win32window.h", | 546 "win32window.h", |
| 549 "win32windowpicker.cc", | 547 "win32windowpicker.cc", |
| 550 "win32windowpicker.h", | 548 "win32windowpicker.h", |
| 551 "winfirewall.cc", | 549 "winfirewall.cc", |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 585 "linux.cc", | 583 "linux.cc", |
| 586 "linux.h", | 584 "linux.h", |
| 587 ] | 585 ] |
| 588 } | 586 } |
| 589 | 587 |
| 590 if (is_nacl) { | 588 if (is_nacl) { |
| 591 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] | 589 deps += [ "//native_client_sdk/src/libraries/nacl_io" ] |
| 592 defines += [ "timezone=_timezone" ] | 590 defines += [ "timezone=_timezone" ] |
| 593 } | 591 } |
| 594 } | 592 } |
| OLD | NEW |