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

Side by Side Diff: ppapi/native_client/BUILD.gn

Issue 1547463004: GN: Properly mark all NaCl test depencies as data_deps (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: nacl_helper_nonsfi is not part of Linux installer Created 4 years, 12 months 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 | « ppapi/BUILD.gn ('k') | ppapi/tests/extensions/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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 import("//build/config/nacl/config.gni") 6 import("//build/config/nacl/config.gni")
7 7
8 if (is_nacl) { 8 if (is_nacl) {
9 group("ppapi_lib") { 9 group("ppapi_lib") {
10 deps = [ 10 deps = [
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 args = [ 89 args = [
90 rebase_path(objcopy), 90 rebase_path(objcopy),
91 rebase_path(irt_debug), 91 rebase_path(irt_debug),
92 rebase_path(irt_stripped), 92 rebase_path(irt_stripped),
93 rebase_path(irt_final), 93 rebase_path(irt_final),
94 ] 94 ]
95 } 95 }
96 } 96 }
97 97
98 group("irt") { 98 group("irt") {
99 public_deps = [ 99 data_deps = [
100 ":nacl_irt_debug(//build/toolchain/nacl:irt_${target_cpu})", 100 ":nacl_irt_debug(//build/toolchain/nacl:irt_${target_cpu})",
101 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_${target_cpu})", 101 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_${target_cpu})",
102 ] 102 ]
103 103
104 # On 32-bit Windows, we also ship the 64-bit IRT. 104 # On 32-bit Windows, we also ship the 64-bit IRT.
105 if (is_win && target_cpu == "x86") { 105 if (is_win && target_cpu == "x86") {
106 public_deps += [ 106 data_deps += [
107 ":nacl_irt_debug(//build/toolchain/nacl:irt_x64)", 107 ":nacl_irt_debug(//build/toolchain/nacl:irt_x64)",
108 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_x64)", 108 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_x64)",
109 ] 109 ]
110 } 110 }
111 } 111 }
OLDNEW
« no previous file with comments | « ppapi/BUILD.gn ('k') | ppapi/tests/extensions/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698