| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 } | 230 } |
| 231 | 231 |
| 232 executable("pepper_hash_for_uma") { | 232 executable("pepper_hash_for_uma") { |
| 233 sources = [ | 233 sources = [ |
| 234 "tools/pepper_hash_for_uma.cc", | 234 "tools/pepper_hash_for_uma.cc", |
| 235 ] | 235 ] |
| 236 | 236 |
| 237 deps = [ | 237 deps = [ |
| 238 "//base", | 238 "//base", |
| 239 "//build/config/sanitizers:deps", | 239 "//build/config/sanitizers:deps", |
| 240 "//build/win:default_exe_manifest", |
| 240 ] | 241 ] |
| 241 } | 242 } |
| 242 | 243 |
| 243 if (is_nacl_glibc) { | 244 if (is_nacl_glibc) { |
| 244 shared_library("ppapi_cpp_lib") { | 245 shared_library("ppapi_cpp_lib") { |
| 245 # When using gcc, we hide all symbols by default, but that breaks at | 246 # When using gcc, we hide all symbols by default, but that breaks at |
| 246 # link time as the test executable requires symbols defined in the | 247 # link time as the test executable requires symbols defined in the |
| 247 # shared library. | 248 # shared library. |
| 248 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] | 249 configs -= [ "//build/config/gcc:symbol_visibility_hidden" ] |
| 249 | 250 |
| (...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 group("ppapi_nacl_tests_all") { | 443 group("ppapi_nacl_tests_all") { |
| 443 data_deps = [ | 444 data_deps = [ |
| 444 ":copy_test_files", | 445 ":copy_test_files", |
| 445 ":ppapi_nacl_tests_copy(//build/toolchain/nacl:clang_newlib_${target_cpu})
", | 446 ":ppapi_nacl_tests_copy(//build/toolchain/nacl:clang_newlib_${target_cpu})
", |
| 446 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})", | 447 ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})", |
| 447 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)", | 448 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl)", |
| 448 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)", | 449 ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)", |
| 449 ] | 450 ] |
| 450 } | 451 } |
| 451 } | 452 } |
| OLD | NEW |