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") { | 73 loadable_module("blink_test_plugin") { |
74 sources = [ | 74 sources = [ |
75 "tests/blink_test_plugin.cc", | 75 "tests/blink_test_plugin.cc", |
76 ] | 76 ] |
77 | 77 |
78 deps = [ | 78 deps = [ |
79 "//build/config/sanitizers:deps", | 79 "//build/config/sanitizers:deps", |
80 "//ppapi/cpp", | 80 "//ppapi/cpp", |
81 "//ppapi/shared_impl", | 81 "//ppapi/shared_impl", |
82 ] | 82 ] |
83 } | 83 } |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
361 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})", | 361 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})", |
362 ] | 362 ] |
363 if (enable_pnacl) { | 363 if (enable_pnacl) { |
364 data_deps += [ | 364 data_deps += [ |
365 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)", | 365 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)", |
366 ":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)", |
367 ] | 367 ] |
368 } | 368 } |
369 } | 369 } |
370 } | 370 } |
OLD | NEW |