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/chromecast_build.gni") | 5 import("//build/config/chromecast_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("//build/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
(...skipping 2148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2159 if (is_chromeos) { | 2159 if (is_chromeos) { |
2160 sources += [ "webui/print_preview/printer_backend_proxy_chromeos.cc" ] | 2160 sources += [ "webui/print_preview/printer_backend_proxy_chromeos.cc" ] |
2161 } else { | 2161 } else { |
2162 sources += [ "webui/print_preview/printer_backend_proxy.cc" ] | 2162 sources += [ "webui/print_preview/printer_backend_proxy.cc" ] |
2163 } | 2163 } |
2164 } | 2164 } |
2165 | 2165 |
2166 if (is_android) { | 2166 if (is_android) { |
2167 deps += [ | 2167 deps += [ |
2168 "//components/navigation_interception", | 2168 "//components/navigation_interception", |
| 2169 "//components/subresource_filter/core/browser:browser", |
2169 "//crypto:platform", | 2170 "//crypto:platform", |
2170 "//device/usb/mojo", | 2171 "//device/usb/mojo", |
2171 "//device/usb/public/interfaces", | 2172 "//device/usb/public/interfaces", |
2172 "//ui/android", | 2173 "//ui/android", |
2173 ] | 2174 ] |
2174 | 2175 |
2175 sources += [ | 2176 sources += [ |
2176 "android/autofill/autofill_keyboard_accessory_view.cc", | 2177 "android/autofill/autofill_keyboard_accessory_view.cc", |
2177 "android/autofill/autofill_keyboard_accessory_view.h", | 2178 "android/autofill/autofill_keyboard_accessory_view.h", |
2178 "android/autofill/autofill_logger_android.cc", | 2179 "android/autofill/autofill_logger_android.cc", |
(...skipping 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3531 "test/test_confirm_bubble_model.cc", | 3532 "test/test_confirm_bubble_model.cc", |
3532 "test/test_confirm_bubble_model.h", | 3533 "test/test_confirm_bubble_model.h", |
3533 ] | 3534 ] |
3534 deps += [ "//chrome/test:test_support_ui" ] | 3535 deps += [ "//chrome/test:test_support_ui" ] |
3535 } | 3536 } |
3536 | 3537 |
3537 if (enable_extensions) { | 3538 if (enable_extensions) { |
3538 deps += [ "//extensions/browser" ] | 3539 deps += [ "//extensions/browser" ] |
3539 } | 3540 } |
3540 } | 3541 } |
OLD | NEW |