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

Side by Side Diff: gpu/BUILD.gn

Issue 419613002: Fix GN linking issues. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
« no previous file with comments | « content/test/BUILD.gn ('k') | gpu/skia_bindings/skia_bindings.gyp » ('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 # GYP-to-GN project mappings: 5 # GYP-to-GN project mappings:
6 # 6 #
7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client 7 # gpu.gyp:command_buffer_client => //gpu/command_buffer/client
8 # 8 #
9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common 9 # gpu.gyp:command_buffer_common => //gpu/command_buffer/common
10 # 10 #
(...skipping 15 matching lines...) Expand all
26 # gpu.gyp:gpu_config => //gpu/config 26 # gpu.gyp:gpu_config => //gpu/config
27 # 27 #
28 # gpu.gyp:gpu_ipc => //gpu/ipc 28 # gpu.gyp:gpu_ipc => //gpu/ipc
29 # 29 #
30 # gpu.gyp:disk_cache_proto => //gpu/command_buffer/service:disk_cache_proto 30 # gpu.gyp:disk_cache_proto => //gpu/command_buffer/service:disk_cache_proto
31 # 31 #
32 # command_buffer/command_buffer.gyp:gles2_utils => 32 # command_buffer/command_buffer.gyp:gles2_utils =>
33 # //gpu/command_buffer/common 33 # //gpu/command_buffer/common
34 # (Merged in to here because the separate file exists in GYP only to break 34 # (Merged in to here because the separate file exists in GYP only to break
35 # a .gyp file dependency cycle which GN doesn't have.) 35 # a .gyp file dependency cycle which GN doesn't have.)
36 #
37 # gpu/skia_bindings/skia_bindings.gyp:gpu_skia_bindings => //gpu/skia_bindings
36 38
37 component("gpu") { 39 component("gpu") {
38 deps = [ 40 deps = [
39 "//gpu/command_buffer/client", 41 "//gpu/command_buffer/client",
40 "//gpu/command_buffer/common", 42 "//gpu/command_buffer/common",
41 "//gpu/command_buffer/service", 43 "//gpu/command_buffer/service",
42 "//gpu/command_buffer/client:gles2_cmd_helper", 44 "//gpu/command_buffer/client:gles2_cmd_helper",
43 "//gpu/config", 45 "//gpu/config",
44 "//gpu/ipc", 46 "//gpu/ipc",
45 ] 47 ]
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
249 include_dirs = [ "//third_party/angle/include" ] 251 include_dirs = [ "//third_party/angle/include" ]
250 252
251 deps = [ 253 deps = [
252 "//base", 254 "//base",
253 "//base/third_party/dynamic_annotations", 255 "//base/third_party/dynamic_annotations",
254 "//testing/gmock", 256 "//testing/gmock",
255 "//testing/gtest", 257 "//testing/gtest",
256 "//third_party/angle:translator_static", 258 "//third_party/angle:translator_static",
257 ] 259 ]
258 } 260 }
OLDNEW
« no previous file with comments | « content/test/BUILD.gn ('k') | gpu/skia_bindings/skia_bindings.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698