| 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 if (is_mac) { | 10 if (is_mac) { |
| (...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 "shared_impl/media_stream_buffer_manager_unittest.cc", | 187 "shared_impl/media_stream_buffer_manager_unittest.cc", |
| 188 "shared_impl/media_stream_video_track_shared_unittest.cc", | 188 "shared_impl/media_stream_video_track_shared_unittest.cc", |
| 189 "shared_impl/proxy_lock_unittest.cc", | 189 "shared_impl/proxy_lock_unittest.cc", |
| 190 "shared_impl/resource_tracker_unittest.cc", | 190 "shared_impl/resource_tracker_unittest.cc", |
| 191 "shared_impl/thread_aware_callback_unittest.cc", | 191 "shared_impl/thread_aware_callback_unittest.cc", |
| 192 "shared_impl/time_conversion_unittest.cc", | 192 "shared_impl/time_conversion_unittest.cc", |
| 193 "shared_impl/var_tracker_unittest.cc", | 193 "shared_impl/var_tracker_unittest.cc", |
| 194 ] | 194 ] |
| 195 | 195 |
| 196 deps = [ | 196 deps = [ |
| 197 "//base/test:run_all_unittests", | |
| 198 "//base/test:test_support", | 197 "//base/test:test_support", |
| 199 "//gpu/ipc/common:command_buffer_traits", | 198 "//gpu/ipc/common:command_buffer_traits", |
| 200 "//ipc", | 199 "//ipc", |
| 200 "//ipc:run_all_unittests", |
| 201 "//ipc:test_support", | 201 "//ipc:test_support", |
| 202 "//media:shared_memory_support", | 202 "//media:shared_memory_support", |
| 203 "//ppapi/host", | 203 "//ppapi/host", |
| 204 "//ppapi/proxy", | 204 "//ppapi/proxy", |
| 205 "//ppapi/proxy:test_support", | 205 "//ppapi/proxy:test_support", |
| 206 "//ppapi/shared_impl", | 206 "//ppapi/shared_impl", |
| 207 "//ppapi/shared_impl:test_support", | 207 "//ppapi/shared_impl:test_support", |
| 208 "//skia", | 208 "//skia", |
| 209 "//testing/gmock", | 209 "//testing/gmock", |
| 210 "//testing/gtest", | 210 "//testing/gtest", |
| 211 "//ui/surface", | 211 "//ui/surface", |
| 212 ] | 212 ] |
| 213 } | 213 } |
| 214 | 214 |
| 215 test("ppapi_perftests") { | 215 test("ppapi_perftests") { |
| 216 sources = [ | 216 sources = [ |
| 217 "proxy/ppapi_perftests.cc", | 217 "proxy/ppapi_perftests.cc", |
| 218 "proxy/ppp_messaging_proxy_perftest.cc", | 218 "proxy/ppp_messaging_proxy_perftest.cc", |
| 219 ] | 219 ] |
| 220 | 220 |
| 221 deps = [ | 221 deps = [ |
| 222 "//base/test:test_support", | 222 "//base/test:test_support", |
| 223 "//mojo/edk/system", |
| 223 "//ppapi/proxy", | 224 "//ppapi/proxy", |
| 224 "//ppapi/proxy:test_support", | 225 "//ppapi/proxy:test_support", |
| 225 "//ppapi/shared_impl", | 226 "//ppapi/shared_impl", |
| 226 "//ppapi/shared_impl:test_support", | 227 "//ppapi/shared_impl:test_support", |
| 227 "//testing/gtest", | 228 "//testing/gtest", |
| 228 ] | 229 ] |
| 229 } | 230 } |
| 230 | 231 |
| 231 executable("pepper_hash_for_uma") { | 232 executable("pepper_hash_for_uma") { |
| 232 sources = [ | 233 sources = [ |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 309 group("ppapi_nacl_tests_all") { | 310 group("ppapi_nacl_tests_all") { |
| 310 data_deps = [ | 311 data_deps = [ |
| 311 ":copy_test_files", | 312 ":copy_test_files", |
| 312 ":ppapi_nacl_tests(//build/toolchain/nacl:clang_newlib_${target_cpu})", | 313 ":ppapi_nacl_tests(//build/toolchain/nacl:clang_newlib_${target_cpu})", |
| 313 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})", | 314 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})", |
| 314 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)", | 315 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)", |
| 315 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)", | 316 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)", |
| 316 ] | 317 ] |
| 317 } | 318 } |
| 318 } | 319 } |
| OLD | NEW |