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

Side by Side Diff: components/nacl/BUILD.gn

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Synchronize with new version of gn patch Created 5 years, 1 month 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
OLDNEW
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. 1 # Copyright (c) 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 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 if (enable_nacl) { 10 if (enable_nacl) {
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 "renderer/ppb_nacl_private_impl.h", 136 "renderer/ppb_nacl_private_impl.h",
137 "renderer/progress_event.cc", 137 "renderer/progress_event.cc",
138 "renderer/progress_event.h", 138 "renderer/progress_event.h",
139 "renderer/trusted_plugin_channel.cc", 139 "renderer/trusted_plugin_channel.cc",
140 "renderer/trusted_plugin_channel.h", 140 "renderer/trusted_plugin_channel.h",
141 ] 141 ]
142 142
143 deps = [ 143 deps = [
144 ":nacl_common", 144 ":nacl_common",
145 ":nacl_switches", 145 ":nacl_switches",
146 "renderer/plugin:nacl_trusted_plugin",
147 "//base", 146 "//base",
148 "//content/public/common", 147 "//content/public/common",
149 "//content/public/renderer", 148 "//content/public/renderer",
150 "//ipc", 149 "//ipc",
151 "//net", 150 "//net",
152 "//ppapi/c", 151 "//ppapi/c",
153 "//ppapi/proxy:ipc", 152 "//ppapi/proxy:ipc",
154 "//ppapi/shared_impl", 153 "//ppapi/shared_impl",
155 "//third_party/WebKit/public:blink", 154 "//third_party/WebKit/public:blink",
155 "renderer/plugin:nacl_trusted_plugin",
156 ] 156 ]
157 } 157 }
158 158
159 # TODO(GYP): Delete this after we've converted everything to GN. 159 # TODO(GYP): Delete this after we've converted everything to GN.
160 # The _run targets exist only for compatibility w/ GYP. 160 # The _run targets exist only for compatibility w/ GYP.
161 group("nacl_loader_unittests_run") { 161 group("nacl_loader_unittests_run") {
162 testonly = true 162 testonly = true
163 deps = [ 163 deps = [
164 ":nacl_loader_unittests", 164 ":nacl_loader_unittests",
165 ] 165 ]
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
251 "loader/nacl_helper_linux.cc", 251 "loader/nacl_helper_linux.cc",
252 "loader/nacl_helper_linux.h", 252 "loader/nacl_helper_linux.h",
253 "loader/nacl_trusted_listener.cc", 253 "loader/nacl_trusted_listener.cc",
254 "loader/nacl_trusted_listener.h", 254 "loader/nacl_trusted_listener.h",
255 "loader/nonsfi/nonsfi_listener.cc", 255 "loader/nonsfi/nonsfi_listener.cc",
256 "loader/nonsfi/nonsfi_listener.h", 256 "loader/nonsfi/nonsfi_listener.h",
257 "loader/nonsfi/nonsfi_main.cc", 257 "loader/nonsfi/nonsfi_main.cc",
258 "loader/nonsfi/nonsfi_main.h", 258 "loader/nonsfi/nonsfi_main.h",
259 ] 259 ]
260 deps = [ 260 deps = [
261 ":nacl_helper_nonsfi_sandbox",
261 ":nacl_switches", 262 ":nacl_switches",
262 ":nacl_helper_nonsfi_sandbox",
263 "//base", 263 "//base",
264 "//components/tracing", 264 "//components/tracing",
265 "//content", 265 "//content",
266 "//ipc", 266 "//ipc",
267 "//native_client/src/nonsfi/irt:nacl_sys_private", 267 "//native_client/src/nonsfi/irt:nacl_sys_private",
268 "//native_client/src/nonsfi/loader:elf_loader", 268 "//native_client/src/nonsfi/loader:elf_loader",
269 "//native_client/src/untrusted/nacl:nacl", 269 "//native_client/src/untrusted/nacl:nacl",
270 "//ppapi/proxy", 270 "//ppapi/proxy",
271 "//sandbox/linux:sandbox", 271 "//sandbox/linux:sandbox",
272 ] 272 ]
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
348 348
349 if (is_linux) { 349 if (is_linux) {
350 sources += [ 350 sources += [
351 "common/nacl_paths.cc", 351 "common/nacl_paths.cc",
352 "common/nacl_paths.h", 352 "common/nacl_paths.h",
353 ] 353 ]
354 354
355 defines = [ "__STDC_LIMIT_MACROS=1" ] 355 defines = [ "__STDC_LIMIT_MACROS=1" ]
356 } 356 }
357 } 357 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698