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 assert(!is_android || enable_plugins, | 5 assert(!is_android || enable_plugins, |
6 "//ppapi should not be referenced when is_android && !enable_plugins") | 6 "//ppapi should not be referenced when is_android && !enable_plugins") |
7 | 7 |
8 copy("copy_test_files") { | 8 copy("copy_test_files") { |
9 visibility = [ ":*" ] | 9 visibility = [ ":*" ] |
10 sources = [ | 10 sources = [ |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 "tests/test_utils.cc", | 63 "tests/test_utils.cc", |
64 ] | 64 ] |
65 | 65 |
66 deps = [ | 66 deps = [ |
67 "//build/config/sanitizers:deps", | 67 "//build/config/sanitizers:deps", |
68 "//ppapi/cpp", | 68 "//ppapi/cpp", |
69 "//ppapi/shared_impl", | 69 "//ppapi/shared_impl", |
70 ] | 70 ] |
71 } | 71 } |
72 | 72 |
| 73 shared_library("blink_test_plugin") { |
| 74 sources = [ |
| 75 "tests/blink_test_plugin.cc", |
| 76 ] |
| 77 |
| 78 deps = [ |
| 79 "//build/config/sanitizers:deps", |
| 80 "//ppapi/cpp", |
| 81 "//ppapi/shared_impl", |
| 82 ] |
| 83 } |
| 84 |
73 test("ppapi_unittests") { | 85 test("ppapi_unittests") { |
74 sources = [ | 86 sources = [ |
75 "host/resource_message_filter_unittest.cc", | 87 "host/resource_message_filter_unittest.cc", |
76 "proxy/device_enumeration_resource_helper_unittest.cc", | 88 "proxy/device_enumeration_resource_helper_unittest.cc", |
77 "proxy/file_chooser_resource_unittest.cc", | 89 "proxy/file_chooser_resource_unittest.cc", |
78 "proxy/file_system_resource_unittest.cc", | 90 "proxy/file_system_resource_unittest.cc", |
79 "proxy/flash_resource_unittest.cc", | 91 "proxy/flash_resource_unittest.cc", |
80 "proxy/interface_list_unittest.cc", | 92 "proxy/interface_list_unittest.cc", |
81 "proxy/mock_resource.cc", | 93 "proxy/mock_resource.cc", |
82 "proxy/mock_resource.h", | 94 "proxy/mock_resource.h", |
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})", | 361 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})", |
350 ] | 362 ] |
351 if (enable_pnacl) { | 363 if (enable_pnacl) { |
352 data_deps += [ | 364 data_deps += [ |
353 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)", | 365 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)", |
354 ":ppapi_nacl_tests_pnacl_nonsfi_nmf(//build/toolchain/nacl:newlib_pnacl_
nonsfi)", | 366 ":ppapi_nacl_tests_pnacl_nonsfi_nmf(//build/toolchain/nacl:newlib_pnacl_
nonsfi)", |
355 ] | 367 ] |
356 } | 368 } |
357 } | 369 } |
358 } | 370 } |
OLD | NEW |