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

Side by Side Diff: ui/compositor/BUILD.gn

Issue 348363002: Add chrome/plugin and chrome/utility to GN build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | « content/worker/BUILD.gn ('k') | webkit/child/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("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 6
7 component("compositor") { 7 component("compositor") {
8 sources = [ 8 sources = [
9 "compositor.cc", 9 "compositor.cc",
10 "compositor.h", 10 "compositor.h",
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 "test/test_utils.h", 97 "test/test_utils.h",
98 ] 98 ]
99 99
100 deps = [ 100 deps = [
101 ":compositor", 101 ":compositor",
102 "//base", 102 "//base",
103 "//cc", 103 "//cc",
104 "//cc:test_support", 104 "//cc:test_support",
105 "//skia", 105 "//skia",
106 "//testing/gtest", 106 "//testing/gtest",
107 #"//third_party/WebKit/public:blink_minimal", TODO(GYP) 107 "//third_party/WebKit/public:blink_minimal",
108 "//ui/base", 108 "//ui/base",
109 "//ui/gfx", 109 "//ui/gfx",
110 "//ui/gfx/geometry", 110 "//ui/gfx/geometry",
111 "//ui/gl", 111 "//ui/gl",
112 #'<(DEPTH)/webkit/common/gpu/webkit_gpu.gyp:webkit_gpu', TODO(GYP) 112 "//webkit/common/gpu",
113 ] 113 ]
114 114
115 if (use_x11) { 115 if (use_x11) {
116 configs += [ "//build/config/linux:x11" ] 116 configs += [ "//build/config/linux:x11" ]
117 deps += [ "//ui/gfx:gfx_x11" ] 117 deps += [ "//ui/gfx:gfx_x11" ]
118 } 118 }
119 } 119 }
120 120
121 # TODO(GYP) enable this when all dependencies are complete and it links. 121 # TODO(GYP) enable this when all dependencies are complete and it links.
122 #test("compositor_unittests") { 122 #test("compositor_unittests") {
(...skipping 21 matching lines...) Expand all
144 # "//ui/gfx", 144 # "//ui/gfx",
145 # "//ui/gfx/geometry", 145 # "//ui/gfx/geometry",
146 # "//ui/gl", 146 # "//ui/gl",
147 # "//ui/resources", 147 # "//ui/resources",
148 # ] 148 # ]
149 # 149 #
150 # if (is_linux) { 150 # if (is_linux) {
151 # #deps += [ "//third_party/mesa:osmesa" ] # TODO(GYP) 151 # #deps += [ "//third_party/mesa:osmesa" ] # TODO(GYP)
152 # } 152 # }
153 #} 153 #}
OLDNEW
« no previous file with comments | « content/worker/BUILD.gn ('k') | webkit/child/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698