Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(500)

Side by Side Diff: ppapi/BUILD.gn

Issue 1525773002: Only set -rpath=$ORIGIN in component builds by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « mojo/common/BUILD.gn ('k') | third_party/mojo/src/mojo/edk/test/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « mojo/common/BUILD.gn ('k') | third_party/mojo/src/mojo/edk/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698