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

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

Issue 464153002: GN: Create a :gles2_interface target to resolve some check errors in //cc. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: missing config forwarding Created 6 years, 4 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
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("//mojo/public/tools/bindings/mojom.gni") 8 import("//mojo/public/tools/bindings/mojom.gni")
9 9
10 source_set("common") { 10 source_set("common") {
(...skipping 10 matching lines...) Expand all
21 21
22 configs += [ 22 configs += [
23 "//content:content_implementation", 23 "//content:content_implementation",
24 "//content:libjingle_stub_config", 24 "//content:libjingle_stub_config",
25 ] 25 ]
26 26
27 deps = [ 27 deps = [
28 "//base", 28 "//base",
29 "//build/util:webkit_version", 29 "//build/util:webkit_version",
30 "//components/tracing", 30 "//components/tracing",
31 "//gpu/command_buffer/client:gles2_interface",
31 "//gpu/command_buffer/common", 32 "//gpu/command_buffer/common",
32 "//net", 33 "//net",
33 "//skia", 34 "//skia",
34 "//third_party/icu", 35 "//third_party/icu",
35 "//ui/accessibility", 36 "//ui/accessibility",
36 "//ui/base", 37 "//ui/base",
37 "//ui/gfx", 38 "//ui/gfx",
38 "//ui/gfx/geometry", 39 "//ui/gfx/geometry",
39 "//ui/gfx/ipc", 40 "//ui/gfx/ipc",
40 "//ui/shell_dialogs", 41 "//ui/shell_dialogs",
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 276
276 mojom("mojo_bindings") { 277 mojom("mojo_bindings") {
277 sources = [ 278 sources = [
278 "render_frame_setup.mojom", 279 "render_frame_setup.mojom",
279 ] 280 ]
280 281
281 deps = [ 282 deps = [
282 "//mojo/public/interfaces/application:application", 283 "//mojo/public/interfaces/application:application",
283 ] 284 ]
284 } 285 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698