| OLD | NEW |
| 1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2013 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/ui.gni") | 5 import("//build/config/ui.gni") |
| 6 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 "trace_event_analyzer.cc", | 121 "trace_event_analyzer.cc", |
| 122 "trace_event_analyzer.h", | 122 "trace_event_analyzer.h", |
| 123 "trace_to_file.cc", | 123 "trace_to_file.cc", |
| 124 "trace_to_file.h", | 124 "trace_to_file.h", |
| 125 "user_action_tester.cc", | 125 "user_action_tester.cc", |
| 126 "user_action_tester.h", | 126 "user_action_tester.h", |
| 127 "values_test_util.cc", | 127 "values_test_util.cc", |
| 128 "values_test_util.h", | 128 "values_test_util.h", |
| 129 ] | 129 ] |
| 130 | 130 |
| 131 data = [ |
| 132 # The isolate needs this script for setting up the test. It's not actually |
| 133 # needed to run this target locally. |
| 134 "//testing/test_env.py", |
| 135 ] |
| 136 |
| 131 public_deps = [ | 137 public_deps = [ |
| 132 ":test_config", | 138 ":test_config", |
| 133 "//base", | 139 "//base", |
| 134 "//base:i18n", | 140 "//base:i18n", |
| 135 "//base:base_static", | 141 "//base:base_static", |
| 136 ] | 142 ] |
| 137 deps = [ | 143 deps = [ |
| 138 "//base/third_party/dynamic_annotations", | 144 "//base/third_party/dynamic_annotations", |
| 139 "//testing/gmock", | 145 "//testing/gmock", |
| 140 "//testing/gtest", | 146 "//testing/gtest", |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 | 211 |
| 206 if (is_android) { | 212 if (is_android) { |
| 207 generate_jni("base_unittests_jni_headers") { | 213 generate_jni("base_unittests_jni_headers") { |
| 208 sources = [ | 214 sources = [ |
| 209 "android/java/src/org/chromium/base/ContentUriTestUtils.java", | 215 "android/java/src/org/chromium/base/ContentUriTestUtils.java", |
| 210 "android/java/src/org/chromium/base/TestUiThread.java", | 216 "android/java/src/org/chromium/base/TestUiThread.java", |
| 211 ] | 217 ] |
| 212 jni_package = "base" | 218 jni_package = "base" |
| 213 } | 219 } |
| 214 } | 220 } |
| OLD | NEW |