OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 import("//build/config/crypto.gni") | 5 import("//build/config/crypto.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//components/nacl/nacl_defines.gni") | 8 import("//components/nacl/nacl_defines.gni") |
9 | 9 |
10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which | 10 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which |
(...skipping 635 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
646 "//ui/views", | 646 "//ui/views", |
647 "//ui/views/controls/webview", | 647 "//ui/views/controls/webview", |
648 ] | 648 ] |
649 deps += [ | 649 deps += [ |
650 ":chrome_process_finder", | 650 ":chrome_process_finder", |
651 "//chrome:version_header", | 651 "//chrome:version_header", |
652 "//chrome/installer/util:strings", | 652 "//chrome/installer/util:strings", |
653 "//chrome_elf", | 653 "//chrome_elf", |
654 "//chrome_elf:constants", | 654 "//chrome_elf:constants", |
655 "//chrome_elf:dll_hash", | 655 "//chrome_elf:dll_hash", |
656 "//components/browser_watcher", | |
657 "//components/browser_watcher:browser_watcher_client", | |
658 "//google_update", | 656 "//google_update", |
659 "//third_party/iaccessible2", | 657 "//third_party/iaccessible2", |
660 "//third_party/isimpledom", | 658 "//third_party/isimpledom", |
661 "//third_party/wtl", | 659 "//third_party/wtl", |
662 "//ui/metro_viewer", | 660 "//ui/metro_viewer", |
663 "//win8:metro_viewer", | 661 "//win8:metro_viewer", |
664 ] | 662 ] |
665 libs += [ "credui.lib" ] | |
666 } else { | 663 } else { |
667 # Non-Windows. | 664 # Non-Windows. |
668 sources += | 665 sources += |
669 rebase_path(gypi_values.chrome_browser_non_win_sources, ".", "//chrome") | 666 rebase_path(gypi_values.chrome_browser_non_win_sources, ".", "//chrome") |
670 if (toolkit_views) { | 667 if (toolkit_views) { |
671 deps += [ | 668 deps += [ |
672 "//ui/views", | 669 "//ui/views", |
673 "//ui/views/controls/webview", | 670 "//ui/views/controls/webview", |
674 ] | 671 ] |
675 # TODO(GYP) why is this needed? Very susicious. | 672 # TODO(GYP) why is this needed? Very susicious. |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1093 ] | 1090 ] |
1094 } | 1091 } |
1095 | 1092 |
1096 if (enable_wifi_bootstrapping) { | 1093 if (enable_wifi_bootstrapping) { |
1097 sources += [ | 1094 sources += [ |
1098 "local_discovery/wifi/mock_wifi_manager.cc", | 1095 "local_discovery/wifi/mock_wifi_manager.cc", |
1099 "local_discovery/wifi/mock_wifi_manager.h", | 1096 "local_discovery/wifi/mock_wifi_manager.h", |
1100 ] | 1097 ] |
1101 } | 1098 } |
1102 } | 1099 } |
OLD | NEW |