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 copy("copy_test_files") { | 5 copy("copy_test_files") { |
6 visibility = [ ":*" ] | 6 visibility = [ ":*" ] |
7 sources = [ | 7 sources = [ |
8 # Keep "test_case.html.mock-http-headers" with "test_case.html". | 8 # Keep "test_case.html.mock-http-headers" with "test_case.html". |
9 "tests/ppapi_nacl_tests_newlib.nmf", | 9 "tests/ppapi_nacl_tests_newlib.nmf", |
10 "tests/test_case.html", | 10 "tests/test_case.html", |
(...skipping 132 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
143 sources = [ | 143 sources = [ |
144 "tools/pepper_hash_for_uma.cc", | 144 "tools/pepper_hash_for_uma.cc", |
145 ] | 145 ] |
146 | 146 |
147 deps = [ | 147 deps = [ |
148 "//base", | 148 "//base", |
149 "//build/config/sanitizers:deps", | 149 "//build/config/sanitizers:deps", |
150 ] | 150 ] |
151 } | 151 } |
152 | 152 |
153 source_set("ppapi_cpp_lib") { | 153 static_library("ppapi_cpp_lib") { |
| 154 # This library is distributed as a part of the SDK and as such has to |
| 155 # be a static library rather than a source set. |
154 sources = ppapi_sources.cpp_source_files | 156 sources = ppapi_sources.cpp_source_files |
155 sources += [ | 157 sources += [ |
156 "cpp/module_embedder.h", | 158 "cpp/module_embedder.h", |
157 "cpp/ppp_entrypoints.cc", | 159 "cpp/ppp_entrypoints.cc", |
158 ] | 160 ] |
159 deps = [ | 161 deps = [ |
160 "//build/config/nacl:nacl_base", | 162 "//build/config/nacl:nacl_base", |
161 ] | 163 ] |
162 } | 164 } |
163 | 165 |
(...skipping 180 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})", | 346 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:glibc_${target_cpu})", |
345 ] | 347 ] |
346 if (enable_pnacl) { | 348 if (enable_pnacl) { |
347 data_deps += [ | 349 data_deps += [ |
348 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)", | 350 ":ppapi_nacl_tests_nmf(//build/toolchain/nacl:newlib_pnacl)", |
349 ":ppapi_nacl_tests_pnacl_nonsfi_nmf(//build/toolchain/nacl:newlib_pnacl_
nonsfi)", | 351 ":ppapi_nacl_tests_pnacl_nonsfi_nmf(//build/toolchain/nacl:newlib_pnacl_
nonsfi)", |
350 ] | 352 ] |
351 } | 353 } |
352 } | 354 } |
353 } | 355 } |
OLD | NEW |