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

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

Issue 2911513002: Partition libcxx build code from build/config/sanitizers (Closed)
Patch Set: Fix asan Created 3 years, 7 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
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 import("//services/service_manager/public/service_manifest.gni") 7 import("//services/service_manager/public/service_manifest.gni")
8 import("//testing/test.gni") 8 import("//testing/test.gni")
9 9
10 assert(enable_nacl) 10 assert(enable_nacl)
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 if (is_linux) { 113 if (is_linux) {
114 executable("nacl_helper") { 114 executable("nacl_helper") {
115 sources = [ 115 sources = [
116 "nacl_helper_linux.cc", 116 "nacl_helper_linux.cc",
117 "nacl_helper_linux.h", 117 "nacl_helper_linux.h",
118 ] 118 ]
119 119
120 deps = [ 120 deps = [
121 ":loader", 121 ":loader",
122 "//base", 122 "//base",
123 "//build/config/sanitizers:deps_no_options", 123 "//build/config:exe_and_shlib_deps",
124 "//components/nacl/common:switches", 124 "//components/nacl/common:switches",
125 "//components/nacl/loader/sandbox_linux", 125 "//components/nacl/loader/sandbox_linux",
126 "//content/public/common", 126 "//content/public/common",
127 "//crypto", 127 "//crypto",
128 "//ipc", 128 "//ipc",
129 "//mojo/edk/system", 129 "//mojo/edk/system",
130 "//sandbox/linux:sandbox_services", 130 "//sandbox/linux:sandbox_services",
131 "//url/ipc:url_ipc", 131 "//url/ipc:url_ipc",
132 ] 132 ]
133 133
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 deps = [ 292 deps = [
293 ":nacl_helper_nonsfi_unittests_main", 293 ":nacl_helper_nonsfi_unittests_main",
294 ] 294 ]
295 } 295 }
296 } 296 }
297 297
298 service_manifest("nacl_loader_manifest") { 298 service_manifest("nacl_loader_manifest") {
299 name = "nacl_loader" 299 name = "nacl_loader"
300 source = "nacl_loader_manifest.json" 300 source = "nacl_loader_manifest.json"
301 } 301 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698