| 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 if (is_android) { | 5 if (is_android) { |
| 6 import("//build/config/android/config.gni") | 6 import("//build/config/android/config.gni") |
| 7 import("//build/config/android/rules.gni") | 7 import("//build/config/android/rules.gni") |
| 8 } | 8 } |
| 9 | 9 |
| 10 config("system_config") { | 10 config("system_config") { |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 ":system", | 155 ":system", |
| 156 ":test_utils", | 156 ":test_utils", |
| 157 "//base", | 157 "//base", |
| 158 "//base/test:test_support", | 158 "//base/test:test_support", |
| 159 "//mojo/edk/embedder:embedder_unittests", | 159 "//mojo/edk/embedder:embedder_unittests", |
| 160 "//mojo/edk/test:test_support", | 160 "//mojo/edk/test:test_support", |
| 161 "//testing/gtest", | 161 "//testing/gtest", |
| 162 ] | 162 ] |
| 163 | 163 |
| 164 if (is_android) { | 164 if (is_android) { |
| 165 deps += [ | 165 deps += [ "//testing/android:native_test_native_code" ] |
| 166 "//testing/android:native_test_native_code", | |
| 167 ] | |
| 168 } | 166 } |
| 169 | 167 |
| 170 allow_circular_includes_from = [ "//mojo/edk/embedder:embedder_unittests" ] | 168 allow_circular_includes_from = [ "//mojo/edk/embedder:embedder_unittests" ] |
| 171 } | 169 } |
| 172 | 170 |
| 173 # GYP version: mojo/edk/mojo_edk.gyp:mojo_message_pipe_perftests | 171 # GYP version: mojo/edk/mojo_edk.gyp:mojo_message_pipe_perftests |
| 174 test("mojo_message_pipe_perftests") { | 172 test("mojo_message_pipe_perftests") { |
| 175 sources = [ | 173 sources = [ |
| 176 "message_pipe_perftest.cc", | 174 "message_pipe_perftest.cc", |
| 177 "message_pipe_test_utils.h", | 175 "message_pipe_test_utils.h", |
| (...skipping 12 matching lines...) Expand all Loading... |
| 190 } | 188 } |
| 191 | 189 |
| 192 if (is_android) { | 190 if (is_android) { |
| 193 unittest_apk("mojo_system_unittests_apk") { | 191 unittest_apk("mojo_system_unittests_apk") { |
| 194 deps = [ | 192 deps = [ |
| 195 ":mojo_system_unittests", | 193 ":mojo_system_unittests", |
| 196 ] | 194 ] |
| 197 unittests_dep = ":mojo_system_unittests" | 195 unittests_dep = ":mojo_system_unittests" |
| 198 } | 196 } |
| 199 } | 197 } |
| OLD | NEW |