| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//tools/grit/repack.gni") | 8 import("//tools/grit/repack.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 177 "//components/dom_distiller/content/browser:unit_tests", | 177 "//components/dom_distiller/content/browser:unit_tests", |
| 178 "//components/domain_reliability:unit_tests", | 178 "//components/domain_reliability:unit_tests", |
| 179 "//components/error_page/renderer:unit_tests", | 179 "//components/error_page/renderer:unit_tests", |
| 180 "//components/favicon/content:unit_tests", | 180 "//components/favicon/content:unit_tests", |
| 181 "//components/gcm_driver/instance_id:unit_tests", | 181 "//components/gcm_driver/instance_id:unit_tests", |
| 182 "//components/guest_view/browser:unit_tests", | 182 "//components/guest_view/browser:unit_tests", |
| 183 "//components/history/content/browser:unit_tests", | 183 "//components/history/content/browser:unit_tests", |
| 184 "//components/invalidation/impl:unit_tests", | 184 "//components/invalidation/impl:unit_tests", |
| 185 "//components/keyed_service/content:unit_tests", | 185 "//components/keyed_service/content:unit_tests", |
| 186 "//components/link_header_util:unit_tests", | 186 "//components/link_header_util:unit_tests", |
| 187 "//components/memory_coordinator/browser:unit_tests", |
| 187 "//components/memory_coordinator/child:unit_tests", | 188 "//components/memory_coordinator/child:unit_tests", |
| 188 "//components/navigation_interception:unit_tests", | 189 "//components/navigation_interception:unit_tests", |
| 189 "//components/network_hints/renderer:unit_tests", | 190 "//components/network_hints/renderer:unit_tests", |
| 190 "//components/ntp_tiles:unit_tests", | 191 "//components/ntp_tiles:unit_tests", |
| 191 "//components/packed_ct_ev_whitelist:unit_tests", | 192 "//components/packed_ct_ev_whitelist:unit_tests", |
| 192 "//components/page_load_metrics/browser:unit_tests", | 193 "//components/page_load_metrics/browser:unit_tests", |
| 193 "//components/page_load_metrics/renderer:unit_tests", | 194 "//components/page_load_metrics/renderer:unit_tests", |
| 194 "//components/password_manager/content/browser:unit_tests", | 195 "//components/password_manager/content/browser:unit_tests", |
| 195 "//components/power:unit_tests", | 196 "//components/power:unit_tests", |
| 196 "//components/precache/content:unit_tests", | 197 "//components/precache/content:unit_tests", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 217 ":components_tests_pak", | 218 ":components_tests_pak", |
| 218 "//third_party/mesa:osmesa", | 219 "//third_party/mesa:osmesa", |
| 219 "//ui/resources:ui_test_pak", | 220 "//ui/resources:ui_test_pak", |
| 220 ] | 221 ] |
| 221 } # iOS/!iOS | 222 } # iOS/!iOS |
| 222 | 223 |
| 223 if (is_ios) { | 224 if (is_ios) { |
| 224 deps += [ ":components_tests_pak_bundle_data" ] | 225 deps += [ ":components_tests_pak_bundle_data" ] |
| 225 } | 226 } |
| 226 | 227 |
| 227 if (is_mac) { | 228 if (is_mac || is_linux) { |
| 228 data_deps += [ "//content/shell:pak" ] | 229 data_deps += [ "//content/shell:pak" ] |
| 229 } | 230 } |
| 230 | 231 |
| 231 if (is_android) { | 232 if (is_android) { |
| 232 deps += [ | 233 deps += [ |
| 233 "//components/gcm_driver/instance_id:test_support", | 234 "//components/gcm_driver/instance_id:test_support", |
| 234 "//components/gcm_driver/instance_id/android:instance_id_driver_java", | 235 "//components/gcm_driver/instance_id/android:instance_id_driver_java", |
| 235 "//components/gcm_driver/instance_id/android:instance_id_driver_test_suppo
rt_java", | 236 "//components/gcm_driver/instance_id/android:instance_id_driver_test_suppo
rt_java", |
| 236 "//components/invalidation/impl", | 237 "//components/invalidation/impl", |
| 237 "//components/invalidation/impl:java", | 238 "//components/invalidation/impl:java", |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 "//base/test:test_support_perf", | 489 "//base/test:test_support_perf", |
| 489 "//components/scheduler", | 490 "//components/scheduler", |
| 490 "//components/visitedlink/browser", | 491 "//components/visitedlink/browser", |
| 491 "//content/test:test_support", | 492 "//content/test:test_support", |
| 492 "//testing/gtest", | 493 "//testing/gtest", |
| 493 "//testing/perf", | 494 "//testing/perf", |
| 494 "//url", | 495 "//url", |
| 495 ] | 496 ] |
| 496 } | 497 } |
| 497 } | 498 } |
| OLD | NEW |