| 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 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 "base/ui_test_utils.h", | 292 "base/ui_test_utils.h", |
| 293 ] | 293 ] |
| 294 | 294 |
| 295 configs += [ "//build/config:precompiled_headers" ] | 295 configs += [ "//build/config:precompiled_headers" ] |
| 296 | 296 |
| 297 public_deps = [ | 297 public_deps = [ |
| 298 "//chrome/browser:test_support_ui", | 298 "//chrome/browser:test_support_ui", |
| 299 ] | 299 ] |
| 300 deps = [ | 300 deps = [ |
| 301 "//components/metrics:test_support", | 301 "//components/metrics:test_support", |
| 302 "//components/os_crypt:test_support", |
| 302 "//skia", | 303 "//skia", |
| 303 "//testing/gtest", | 304 "//testing/gtest", |
| 304 ] | 305 ] |
| 305 | 306 |
| 306 if (enable_plugins) { | 307 if (enable_plugins) { |
| 307 sources += [ | 308 sources += [ |
| 308 "ppapi/ppapi_test.cc", | 309 "ppapi/ppapi_test.cc", |
| 309 "ppapi/ppapi_test.h", | 310 "ppapi/ppapi_test.h", |
| 310 ] | 311 ] |
| 311 } | 312 } |
| (...skipping 1417 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1729 "//ui/resources", | 1730 "//ui/resources", |
| 1730 ] | 1731 ] |
| 1731 data_deps = [] | 1732 data_deps = [] |
| 1732 | 1733 |
| 1733 if (!is_ios) { | 1734 if (!is_ios) { |
| 1734 deps += [ | 1735 deps += [ |
| 1735 "//components/autofill/content/renderer:test_support", | 1736 "//components/autofill/content/renderer:test_support", |
| 1736 "//components/data_reduction_proxy/core/browser:test_support", | 1737 "//components/data_reduction_proxy/core/browser:test_support", |
| 1737 "//components/data_use_measurement/core", | 1738 "//components/data_use_measurement/core", |
| 1738 "//components/metrics/proto", | 1739 "//components/metrics/proto", |
| 1740 "//components/os_crypt:test_support", |
| 1739 "//components/safe_browsing_db", | 1741 "//components/safe_browsing_db", |
| 1740 "//components/safe_json:test_support", | 1742 "//components/safe_json:test_support", |
| 1741 "//components/strings", | 1743 "//components/strings", |
| 1742 "//components/webdata_services:test_support", | 1744 "//components/webdata_services:test_support", |
| 1743 "//content/app/resources", | 1745 "//content/app/resources", |
| 1744 "//device/bluetooth:mocks", | 1746 "//device/bluetooth:mocks", |
| 1745 "//device/core:mocks", | 1747 "//device/core:mocks", |
| 1746 "//device/usb:test_support", | 1748 "//device/usb:test_support", |
| 1747 "//gpu:test_support", | 1749 "//gpu:test_support", |
| 1748 "//media:test_support", | 1750 "//media:test_support", |
| (...skipping 634 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2383 if (is_android) { | 2385 if (is_android) { |
| 2384 android_library("unit_tests_java") { | 2386 android_library("unit_tests_java") { |
| 2385 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2387 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2386 deps = [ | 2388 deps = [ |
| 2387 "//base:base_java", | 2389 "//base:base_java", |
| 2388 "//chrome/android:chrome_java", | 2390 "//chrome/android:chrome_java", |
| 2389 "//content/public/android:content_java", | 2391 "//content/public/android:content_java", |
| 2390 ] | 2392 ] |
| 2391 } | 2393 } |
| 2392 } | 2394 } |
| OLD | NEW |