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

Side by Side Diff: content/common/BUILD.gn

Issue 1542013005: Add a new driver bug workaround SANDBOX_START_EARLY Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add support for gn build Created 4 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 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("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//content/common/common.gni") 7 import("//content/common/common.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 if (is_mac) { 10 if (is_mac) {
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 "plugin_list.cc", 169 "plugin_list.cc",
170 "plugin_list.h", 170 "plugin_list.h",
171 ] 171 ]
172 } 172 }
173 173
174 if (!is_win || !use_aura) { 174 if (!is_win || !use_aura) {
175 sources -= [ "cursors/webcursor_aurawin.cc" ] 175 sources -= [ "cursors/webcursor_aurawin.cc" ]
176 } 176 }
177 177
178 if (use_seccomp_bpf) { 178 if (use_seccomp_bpf) {
179 configs += [ "//build/config/linux/dri" ]
179 defines += [ "USE_SECCOMP_BPF" ] 180 defines += [ "USE_SECCOMP_BPF" ]
180 } else { 181 } else {
181 if (is_linux) { 182 if (is_linux) {
182 sources -= [ 183 sources -= [
183 "sandbox_linux/bpf_cros_arm_gpu_policy_linux.cc", 184 "sandbox_linux/bpf_cros_arm_gpu_policy_linux.cc",
184 "sandbox_linux/bpf_cros_arm_gpu_policy_linux.h", 185 "sandbox_linux/bpf_cros_arm_gpu_policy_linux.h",
185 "sandbox_linux/bpf_gpu_policy_linux.cc", 186 "sandbox_linux/bpf_gpu_policy_linux.cc",
186 "sandbox_linux/bpf_gpu_policy_linux.h", 187 "sandbox_linux/bpf_gpu_policy_linux.h",
187 "sandbox_linux/bpf_ppapi_policy_linux.cc", 188 "sandbox_linux/bpf_ppapi_policy_linux.cc",
188 "sandbox_linux/bpf_ppapi_policy_linux.h", 189 "sandbox_linux/bpf_ppapi_policy_linux.h",
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
240 "//components/leveldb/public/interfaces", 241 "//components/leveldb/public/interfaces",
241 "//components/mus/public/interfaces", 242 "//components/mus/public/interfaces",
242 "//content/public/common:mojo_bindings", 243 "//content/public/common:mojo_bindings",
243 "//services/shell/public/interfaces", 244 "//services/shell/public/interfaces",
244 "//skia/public/interfaces", 245 "//skia/public/interfaces",
245 "//third_party/WebKit/public:mojo_bindings", 246 "//third_party/WebKit/public:mojo_bindings",
246 "//ui/mojo/geometry:interfaces", 247 "//ui/mojo/geometry:interfaces",
247 "//url/mojo:url_mojom_origin", 248 "//url/mojo:url_mojom_origin",
248 ] 249 ]
249 } 250 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698