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

Side by Side Diff: content/BUILD.gn

Issue 2158553002: Whitelist all of content for "gn check" (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix Android Created 4 years, 5 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 | « .gn ('k') | content/app/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 import("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 import("//build/config/nacl/config.gni") 6 import("//build/config/nacl/config.gni")
7 7
8 # Applied by targets internal to content. 8 # Applied by targets internal to content.
9 config("content_implementation") { 9 config("content_implementation") {
10 defines = [ "CONTENT_IMPLEMENTATION" ] 10 defines = [ "CONTENT_IMPLEMENTATION" ]
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 "common/sandbox_linux/sandbox_seccomp_bpf_linux.cc", 89 "common/sandbox_linux/sandbox_seccomp_bpf_linux.cc",
90 "common/send_zygote_child_ping_linux.cc", 90 "common/send_zygote_child_ping_linux.cc",
91 "public/common/content_switches.cc", 91 "public/common/content_switches.cc",
92 ] 92 ]
93 set_sources_assignment_filter(sources_assignment_filter) 93 set_sources_assignment_filter(sources_assignment_filter)
94 94
95 defines = [ "USE_SECCOMP_BPF=1" ] 95 defines = [ "USE_SECCOMP_BPF=1" ]
96 96
97 deps = [ 97 deps = [
98 "//base", 98 "//base",
99 "//sandbox/linux:sandbox",
99 ] 100 ]
100 } 101 }
101 } else { 102 } else {
102 group("content") { 103 group("content") {
103 public_deps = content_shared_components 104 public_deps = content_shared_components
104 } 105 }
105 } 106 }
106 107
107 grit("resources") { 108 grit("resources") {
108 source = "content_resources.grd" 109 source = "content_resources.grd"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
142 sources = [ 143 sources = [
143 "app/sandbox_helper_win.cc", 144 "app/sandbox_helper_win.cc",
144 "public/app/sandbox_helper_win.h", 145 "public/app/sandbox_helper_win.h",
145 ] 146 ]
146 147
147 deps = [ 148 deps = [
148 "//sandbox", 149 "//sandbox",
149 ] 150 ]
150 } 151 }
151 } 152 }
OLDNEW
« no previous file with comments | « .gn ('k') | content/app/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698