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

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

Issue 302443002: content: Fix a typo in GN common/BUILD.gn file. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 # TODO(brettw) this file is a work in progress, it is not currently hooked up 5 # TODO(brettw) this file is a work in progress, it is not currently hooked up
6 # to the build, but currently represents the state of content/common's deps. 6 # to the build, but currently represents the state of content/common's deps.
7 7
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//content/common/common.gni") 10 import("//content/common/common.gni")
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 } else { 141 } else {
142 sources -= [ 142 sources -= [
143 "font_list_pango.cc", 143 "font_list_pango.cc",
144 ] 144 ]
145 } 145 }
146 146
147 if (use_x11) { 147 if (use_x11) {
148 include_dirs += [ "//third_party/khronos" ] 148 include_dirs += [ "//third_party/khronos" ]
149 configs += [ "//build/config/linux:xcomposite" ] 149 configs += [ "//build/config/linux:xcomposite" ]
150 150
151 if (cpu_arch != "arm" || !is_chromos) { 151 if (cpu_arch != "arm" || !is_chromeos) {
152 sources +=[ 152 sources +=[
153 "gpu/x_util.cc", 153 "gpu/x_util.cc",
154 "gpu/x_util.h", 154 "gpu/x_util.h",
155 ] 155 ]
156 } 156 }
157 } 157 }
158 158
159 if (enable_plugins) { 159 if (enable_plugins) {
160 deps += [ 160 deps += [
161 # TODO(GYP) enable once supported in the GN build. 161 # TODO(GYP) enable once supported in the GN build.
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
260 } 260 }
261 if (is_android) { 261 if (is_android) {
262 sources -= [ 262 sources -= [
263 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", 263 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc",
264 "sandbox_linux/android/sandbox_bpf_base_policy_android.h", 264 "sandbox_linux/android/sandbox_bpf_base_policy_android.h",
265 ] 265 ]
266 } 266 }
267 } 267 }
268 } 268 }
269 269
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698