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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
10 | 10 |
(...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
643 # Mobile. | 643 # Mobile. |
644 sources += | 644 sources += |
645 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome") | 645 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome") |
646 } else { | 646 } else { |
647 # Non-mobile. | 647 # Non-mobile. |
648 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, | 648 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, |
649 ".", | 649 ".", |
650 "//chrome") | 650 "//chrome") |
651 deps += [ | 651 deps += [ |
652 "//components/feedback", | 652 "//components/feedback", |
| 653 "//components/webusb", |
653 "//device/core", | 654 "//device/core", |
654 "//device/devices_app/public/cpp", | 655 "//device/devices_app/public/cpp", |
655 "//device/devices_app/public/cpp:factory", | 656 "//device/devices_app/public/cpp:factory", |
656 "//device/usb", | 657 "//device/usb", |
657 ] | 658 ] |
658 } | 659 } |
659 | 660 |
660 if (!is_official_build) { | 661 if (!is_official_build) { |
661 sources += [ | 662 sources += [ |
662 "search/local_files_ntp_source.cc", | 663 "search/local_files_ntp_source.cc", |
(...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1232 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1233 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1233 deps = [ | 1234 deps = [ |
1234 "//components/google/core/browser", | 1235 "//components/google/core/browser", |
1235 "//components/omnibox/browser", | 1236 "//components/omnibox/browser", |
1236 "//components/rlz", | 1237 "//components/rlz", |
1237 "//components/search_engines", | 1238 "//components/search_engines", |
1238 "//rlz:rlz_lib", | 1239 "//rlz:rlz_lib", |
1239 ] | 1240 ] |
1240 } | 1241 } |
1241 } | 1242 } |
OLD | NEW |