| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 | 6 |
| 7 assert(!is_android || enable_plugins, | 7 assert(!is_android || enable_plugins, |
| 8 "//ppapi should not be referenced when is_android && !enable_plugins") | 8 "//ppapi should not be referenced when is_android && !enable_plugins") |
| 9 | 9 |
| 10 copy("copy_test_files") { | 10 copy("copy_test_files") { |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 130 "shared_impl/proxy_lock_unittest.cc", | 130 "shared_impl/proxy_lock_unittest.cc", |
| 131 "shared_impl/resource_tracker_unittest.cc", | 131 "shared_impl/resource_tracker_unittest.cc", |
| 132 "shared_impl/thread_aware_callback_unittest.cc", | 132 "shared_impl/thread_aware_callback_unittest.cc", |
| 133 "shared_impl/time_conversion_unittest.cc", | 133 "shared_impl/time_conversion_unittest.cc", |
| 134 "shared_impl/var_tracker_unittest.cc", | 134 "shared_impl/var_tracker_unittest.cc", |
| 135 ] | 135 ] |
| 136 | 136 |
| 137 deps = [ | 137 deps = [ |
| 138 "//base/test:run_all_unittests", | 138 "//base/test:run_all_unittests", |
| 139 "//base/test:test_support", | 139 "//base/test:test_support", |
| 140 "//gpu/ipc", | 140 "//gpu/ipc/common", |
| 141 "//ipc", | 141 "//ipc", |
| 142 "//ipc:test_support", | 142 "//ipc:test_support", |
| 143 "//media:shared_memory_support", | 143 "//media:shared_memory_support", |
| 144 "//ppapi/host", | 144 "//ppapi/host", |
| 145 "//ppapi/proxy", | 145 "//ppapi/proxy", |
| 146 "//ppapi/proxy:test_support", | 146 "//ppapi/proxy:test_support", |
| 147 "//ppapi/shared_impl", | 147 "//ppapi/shared_impl", |
| 148 "//ppapi/shared_impl:test_support", | 148 "//ppapi/shared_impl:test_support", |
| 149 "//skia", | 149 "//skia", |
| 150 "//testing/gmock", | 150 "//testing/gmock", |
| (...skipping 231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 group("ppapi_nacl_tests_all") { | 382 group("ppapi_nacl_tests_all") { |
| 383 data_deps = [ | 383 data_deps = [ |
| 384 ":copy_test_files", | 384 ":copy_test_files", |
| 385 ":ppapi_nacl_tests_copy(//build/toolchain/nacl:clang_newlib_${target_cpu})
", | 385 ":ppapi_nacl_tests_copy(//build/toolchain/nacl:clang_newlib_${target_cpu})
", |
| 386 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})", | 386 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})", |
| 387 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)", | 387 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)", |
| 388 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)", | 388 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)", |
| 389 ] | 389 ] |
| 390 } | 390 } |
| 391 } | 391 } |
| OLD | NEW |