| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 "logging/win/mof_data_parser.cc", | 77 "logging/win/mof_data_parser.cc", |
| 78 "logging/win/mof_data_parser.h", | 78 "logging/win/mof_data_parser.h", |
| 79 "logging/win/test_log_collector.cc", | 79 "logging/win/test_log_collector.cc", |
| 80 "logging/win/test_log_collector.h", | 80 "logging/win/test_log_collector.h", |
| 81 ] | 81 ] |
| 82 | 82 |
| 83 configs += [ "//build/config:precompiled_headers" ] | 83 configs += [ "//build/config:precompiled_headers" ] |
| 84 | 84 |
| 85 # New deps should go in the non-iOS section below. | 85 # New deps should go in the non-iOS section below. |
| 86 public_deps = [ | 86 public_deps = [ |
| 87 "//base:prefs_test_support", | |
| 88 "//base/test:test_support", | 87 "//base/test:test_support", |
| 89 "//chrome:resources", | 88 "//chrome:resources", |
| 90 "//chrome:strings", | 89 "//chrome:strings", |
| 91 "//chrome/app:test_support", | 90 "//chrome/app:test_support", |
| 92 | 91 |
| 93 #"//chrome/app/theme:theme_resources", | 92 #"//chrome/app/theme:theme_resources", |
| 94 "//chrome/browser:test_support", | 93 "//chrome/browser:test_support", |
| 95 "//chrome/common:test_support", | 94 "//chrome/common:test_support", |
| 96 "//chrome/renderer:test_support", | 95 "//chrome/renderer:test_support", |
| 97 "//components/bookmarks/test", | 96 "//components/bookmarks/test", |
| 98 "//components/gcm_driver:test_support", | 97 "//components/gcm_driver:test_support", |
| 99 "//components/gcm_driver/instance_id:test_support", | 98 "//components/gcm_driver/instance_id:test_support", |
| 100 "//components/history/core/test:test", | 99 "//components/history/core/test:test", |
| 101 "//components/metrics:test_support", | 100 "//components/metrics:test_support", |
| 102 "//components/omnibox/browser:test_support", | 101 "//components/omnibox/browser:test_support", |
| 103 "//components/password_manager/core/browser:test_support", | 102 "//components/password_manager/core/browser:test_support", |
| 104 "//components/pref_registry:test_support", | 103 "//components/pref_registry:test_support", |
| 104 "//components/prefs:test_support", |
| 105 "//components/rappor:test_support", | 105 "//components/rappor:test_support", |
| 106 "//components/search_engines:test_support", | 106 "//components/search_engines:test_support", |
| 107 "//components/signin/core/browser:test_support", | 107 "//components/signin/core/browser:test_support", |
| 108 "//components/sync_driver:test_support", | 108 "//components/sync_driver:test_support", |
| 109 "//components/sync_sessions:test_support", | 109 "//components/sync_sessions:test_support", |
| 110 "//components/syncable_prefs:test_support", | 110 "//components/syncable_prefs:test_support", |
| 111 "//components/toolbar:test_support", | 111 "//components/toolbar:test_support", |
| 112 "//components/ui/zoom:test_support", | 112 "//components/ui/zoom:test_support", |
| 113 "//components/update_client:test_support", | 113 "//components/update_client:test_support", |
| 114 "//content/public/app:both", | 114 "//content/public/app:both", |
| (...skipping 2108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2223 if (is_android) { | 2223 if (is_android) { |
| 2224 android_library("unit_tests_java") { | 2224 android_library("unit_tests_java") { |
| 2225 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" | 2225 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" |
| 2226 deps = [ | 2226 deps = [ |
| 2227 "//base:base_java", | 2227 "//base:base_java", |
| 2228 "//chrome/android:chrome_java", | 2228 "//chrome/android:chrome_java", |
| 2229 "//content/public/android:content_java", | 2229 "//content/public/android:content_java", |
| 2230 ] | 2230 ] |
| 2231 } | 2231 } |
| 2232 } | 2232 } |
| OLD | NEW |