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 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
628 # Mobile. | 628 # Mobile. |
629 sources += | 629 sources += |
630 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome") | 630 rebase_path(gypi_values.chrome_browser_mobile_sources, ".", "//chrome") |
631 } else { | 631 } else { |
632 # Non-mobile. | 632 # Non-mobile. |
633 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, | 633 sources += rebase_path(gypi_values.chrome_browser_non_mobile_sources, |
634 ".", | 634 ".", |
635 "//chrome") | 635 "//chrome") |
636 deps += [ | 636 deps += [ |
637 "//components/feedback", | 637 "//components/feedback", |
| 638 "//components/webusb", |
638 "//device/core", | 639 "//device/core", |
639 "//device/devices_app/public/cpp", | 640 "//device/devices_app/public/cpp", |
640 "//device/devices_app/public/cpp:factory", | 641 "//device/devices_app/public/cpp:factory", |
641 "//device/usb", | 642 "//device/usb", |
642 ] | 643 ] |
643 } | 644 } |
644 | 645 |
645 if (!is_official_build) { | 646 if (!is_official_build) { |
646 sources += [ | 647 sources += [ |
647 "search/local_files_ntp_source.cc", | 648 "search/local_files_ntp_source.cc", |
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1218 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1219 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
1219 deps = [ | 1220 deps = [ |
1220 "//components/google/core/browser", | 1221 "//components/google/core/browser", |
1221 "//components/omnibox/browser", | 1222 "//components/omnibox/browser", |
1222 "//components/rlz", | 1223 "//components/rlz", |
1223 "//components/search_engines", | 1224 "//components/search_engines", |
1224 "//rlz:rlz_lib", | 1225 "//rlz:rlz_lib", |
1225 ] | 1226 ] |
1226 } | 1227 } |
1227 } | 1228 } |
OLD | NEW |