| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 component("ipc") { | 8 component("ipc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "attachment_broker.cc", | 10 "attachment_broker.cc", |
| (...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 deps = [ | 190 deps = [ |
| 191 ":ipc", | 191 ":ipc", |
| 192 ":test_support", | 192 ":test_support", |
| 193 "//base", | 193 "//base", |
| 194 "//base:i18n", | 194 "//base:i18n", |
| 195 "//base/test:run_all_unittests", | 195 "//base/test:run_all_unittests", |
| 196 "//base/test:test_support", | 196 "//base/test:test_support", |
| 197 "//crypto", | 197 "//crypto", |
| 198 "//testing/gtest", | 198 "//testing/gtest", |
| 199 ] | 199 ] |
| 200 |
| 201 if (is_mac) { |
| 202 deps += [ "//sandbox/mac:seatbelt" ] |
| 203 } |
| 200 } | 204 } |
| 201 | 205 |
| 202 test("ipc_perftests") { | 206 test("ipc_perftests") { |
| 203 sources = [ | 207 sources = [ |
| 204 "ipc_perftests.cc", | 208 "ipc_perftests.cc", |
| 205 ] | 209 ] |
| 206 | 210 |
| 207 # TODO(brettw) hook up Android testing. | 211 # TODO(brettw) hook up Android testing. |
| 208 #if (is_android && gtest_target_type == "shared_library") { | 212 #if (is_android && gtest_target_type == "shared_library") { |
| 209 # deps += "/testing/android/native_test.gyp:native_testNative_code" | 213 # deps += "/testing/android/native_test.gyp:native_testNative_code" |
| (...skipping 30 matching lines...) Expand all Loading... |
| 240 ] | 244 ] |
| 241 public_deps = [ | 245 public_deps = [ |
| 242 ":ipc", | 246 ":ipc", |
| 243 ] | 247 ] |
| 244 deps = [ | 248 deps = [ |
| 245 "//base", | 249 "//base", |
| 246 "//base/test:test_support", | 250 "//base/test:test_support", |
| 247 "//testing/gtest", | 251 "//testing/gtest", |
| 248 ] | 252 ] |
| 249 } | 253 } |
| OLD | NEW |