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/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
10 import("//chrome/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 ] | 324 ] |
325 | 325 |
326 configs += [ "//build/config:precompiled_headers" ] | 326 configs += [ "//build/config:precompiled_headers" ] |
327 | 327 |
328 public_deps = [ | 328 public_deps = [ |
329 "//chrome/browser:test_support_ui", | 329 "//chrome/browser:test_support_ui", |
330 ] | 330 ] |
331 deps = [ | 331 deps = [ |
332 "//components/metrics:test_support", | 332 "//components/metrics:test_support", |
333 "//components/os_crypt:test_support", | 333 "//components/os_crypt:test_support", |
| 334 "//content/test:browsertest_support", |
334 "//skia", | 335 "//skia", |
335 "//testing/gtest", | 336 "//testing/gtest", |
336 ] | 337 ] |
337 | 338 |
338 if (enable_plugins) { | 339 if (enable_plugins) { |
339 sources += [ | 340 sources += [ |
340 "ppapi/ppapi_test.cc", | 341 "ppapi/ppapi_test.cc", |
341 "ppapi/ppapi_test.h", | 342 "ppapi/ppapi_test.h", |
342 ] | 343 ] |
343 } | 344 } |
(...skipping 2130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2474 if (is_android) { | 2475 if (is_android) { |
2475 android_library("unit_tests_java") { | 2476 android_library("unit_tests_java") { |
2476 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2477 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
2477 deps = [ | 2478 deps = [ |
2478 "//base:base_java", | 2479 "//base:base_java", |
2479 "//chrome/android:chrome_java", | 2480 "//chrome/android:chrome_java", |
2480 "//content/public/android:content_java", | 2481 "//content/public/android:content_java", |
2481 ] | 2482 ] |
2482 } | 2483 } |
2483 } | 2484 } |
OLD | NEW |