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

Side by Side Diff: gpu/BUILD.gn

Issue 669813003: Update from chromium https://crrev.com/301725/ (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years, 1 month 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
« no previous file with comments | « gin/v8.isolate ('k') | gpu/command_buffer/client/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 # 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 "//third_party/angle:translator", 108 "//third_party/angle:translator",
109 "//ui/gfx", 109 "//ui/gfx",
110 "//ui/gfx:test_support", 110 "//ui/gfx:test_support",
111 "//ui/gfx/geometry", 111 "//ui/gfx/geometry",
112 "//ui/gl", 112 "//ui/gl",
113 "//gpu/command_buffer/common:gles2_utils", 113 "//gpu/command_buffer/common:gles2_utils",
114 "//gpu/command_buffer/client:gles2_c_lib", 114 "//gpu/command_buffer/client:gles2_c_lib",
115 "//gpu/command_buffer/client:gles2_implementation_client_side_arrays", 115 "//gpu/command_buffer/client:gles2_implementation_client_side_arrays",
116 ] 116 ]
117 117
118 libs = []
119
120 if (is_android) {
121 deps += [
122 "//testing/android:native_test_native_code",
123 ]
124 libs += [ "android" ]
125 }
118 # TODO(GYP) 126 # TODO(GYP)
119 # ['OS == "android"', {
120 # 'dependencies': [
121 # '../testing/android/native_test.gyp:native_test_native_code',
122 # ],
123 # }],
124 # ['OS == "win"', { 127 # ['OS == "win"', {
125 # 'dependencies': [ 128 # 'dependencies': [
126 # '../third_party/angle/src/build_angle.gyp:libEGL', 129 # '../third_party/angle/src/build_angle.gyp:libEGL',
127 # '../third_party/angle/src/build_angle.gyp:libGLESv2', 130 # '../third_party/angle/src/build_angle.gyp:libGLESv2',
128 # ], 131 # ],
129 # }], 132 # }],
130 } 133 }
131 134
132 test("gpu_unittests") { 135 test("gpu_unittests") {
133 sources = [ 136 sources = [
(...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 ] 249 ]
247 250
248 deps = [ 251 deps = [
249 "//base", 252 "//base",
250 "//base/third_party/dynamic_annotations", 253 "//base/third_party/dynamic_annotations",
251 "//testing/gmock", 254 "//testing/gmock",
252 "//testing/gtest", 255 "//testing/gtest",
253 "//third_party/angle:translator_static", 256 "//third_party/angle:translator_static",
254 ] 257 ]
255 } 258 }
OLDNEW
« no previous file with comments | « gin/v8.isolate ('k') | gpu/command_buffer/client/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698