| 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 2155 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2166 if (is_chromeos) { | 2166 if (is_chromeos) { |
| 2167 sources += [ "webui/print_preview/printer_backend_proxy_chromeos.cc" ] | 2167 sources += [ "webui/print_preview/printer_backend_proxy_chromeos.cc" ] |
| 2168 } else { | 2168 } else { |
| 2169 sources += [ "webui/print_preview/printer_backend_proxy.cc" ] | 2169 sources += [ "webui/print_preview/printer_backend_proxy.cc" ] |
| 2170 } | 2170 } |
| 2171 } | 2171 } |
| 2172 | 2172 |
| 2173 if (is_android) { | 2173 if (is_android) { |
| 2174 deps += [ | 2174 deps += [ |
| 2175 "//components/navigation_interception", | 2175 "//components/navigation_interception", |
| 2176 "//components/subresource_filter/core/browser:browser", |
| 2176 "//crypto:platform", | 2177 "//crypto:platform", |
| 2177 "//device/usb/mojo", | 2178 "//device/usb/mojo", |
| 2178 "//device/usb/public/interfaces", | 2179 "//device/usb/public/interfaces", |
| 2179 "//ui/android", | 2180 "//ui/android", |
| 2180 ] | 2181 ] |
| 2181 | 2182 |
| 2182 sources += [ | 2183 sources += [ |
| 2183 "android/autofill/autofill_keyboard_accessory_view.cc", | 2184 "android/autofill/autofill_keyboard_accessory_view.cc", |
| 2184 "android/autofill/autofill_keyboard_accessory_view.h", | 2185 "android/autofill/autofill_keyboard_accessory_view.h", |
| 2185 "android/autofill/autofill_logger_android.cc", | 2186 "android/autofill/autofill_logger_android.cc", |
| (...skipping 1359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3545 "test/test_confirm_bubble_model.cc", | 3546 "test/test_confirm_bubble_model.cc", |
| 3546 "test/test_confirm_bubble_model.h", | 3547 "test/test_confirm_bubble_model.h", |
| 3547 ] | 3548 ] |
| 3548 deps += [ "//chrome/test:test_support_ui" ] | 3549 deps += [ "//chrome/test:test_support_ui" ] |
| 3549 } | 3550 } |
| 3550 | 3551 |
| 3551 if (enable_extensions) { | 3552 if (enable_extensions) { |
| 3552 deps += [ "//extensions/browser" ] | 3553 deps += [ "//extensions/browser" ] |
| 3553 } | 3554 } |
| 3554 } | 3555 } |
| OLD | NEW |