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 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
645 "//ui/views", | 645 "//ui/views", |
646 "//ui/views/controls/webview", | 646 "//ui/views/controls/webview", |
647 ] | 647 ] |
648 deps += [ | 648 deps += [ |
649 ":chrome_process_finder", | 649 ":chrome_process_finder", |
650 "//chrome:version_header", | 650 "//chrome:version_header", |
651 "//chrome/installer/util:strings", | 651 "//chrome/installer/util:strings", |
652 "//chrome_elf", | 652 "//chrome_elf", |
653 "//chrome_elf:constants", | 653 "//chrome_elf:constants", |
654 "//chrome_elf:dll_hash", | 654 "//chrome_elf:dll_hash", |
| 655 "//components/browser_watcher", |
| 656 "//components/browser_watcher:browser_watcher_client", |
655 "//google_update", | 657 "//google_update", |
656 "//third_party/iaccessible2", | 658 "//third_party/iaccessible2", |
657 "//third_party/isimpledom", | 659 "//third_party/isimpledom", |
658 "//third_party/wtl", | 660 "//third_party/wtl", |
659 "//ui/metro_viewer", | 661 "//ui/metro_viewer", |
660 "//win8:metro_viewer", | 662 "//win8:metro_viewer", |
661 ] | 663 ] |
| 664 libs += [ "credui.lib" ] |
662 } else { | 665 } else { |
663 # Non-Windows. | 666 # Non-Windows. |
664 sources += | 667 sources += |
665 rebase_path(gypi_values.chrome_browser_non_win_sources, ".", "//chrome") | 668 rebase_path(gypi_values.chrome_browser_non_win_sources, ".", "//chrome") |
666 if (toolkit_views) { | 669 if (toolkit_views) { |
667 deps += [ | 670 deps += [ |
668 "//ui/views", | 671 "//ui/views", |
669 "//ui/views/controls/webview", | 672 "//ui/views/controls/webview", |
670 ] | 673 ] |
671 # TODO(GYP) why is this needed? Very susicious. | 674 # TODO(GYP) why is this needed? Very susicious. |
(...skipping 417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1089 ] | 1092 ] |
1090 } | 1093 } |
1091 | 1094 |
1092 if (enable_wifi_bootstrapping) { | 1095 if (enable_wifi_bootstrapping) { |
1093 sources += [ | 1096 sources += [ |
1094 "local_discovery/wifi/mock_wifi_manager.cc", | 1097 "local_discovery/wifi/mock_wifi_manager.cc", |
1095 "local_discovery/wifi/mock_wifi_manager.h", | 1098 "local_discovery/wifi/mock_wifi_manager.h", |
1096 ] | 1099 ] |
1097 } | 1100 } |
1098 } | 1101 } |
OLD | NEW |