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

Side by Side Diff: gpu/gpu.gyp

Issue 7328011: Introduce ui.dll / libui.so for the component build. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 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 (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 # These are defined here because we need to build this library twice. Once 8 # These are defined here because we need to build this library twice. Once
9 # with extra parameter checking. Once with no parameter checking to be 100% 9 # with extra parameter checking. Once with no parameter checking to be 100%
10 # OpenGL ES 2.0 compliant for the conformance tests. 10 # OpenGL ES 2.0 compliant for the conformance tests.
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 'all_dependent_settings': { 179 'all_dependent_settings': {
180 'include_dirs': [ 180 'include_dirs': [
181 '..', 181 '..',
182 ], 182 ],
183 }, 183 },
184 'dependencies': [ 184 'dependencies': [
185 'command_buffer_common', 185 'command_buffer_common',
186 '../base/base.gyp:base', 186 '../base/base.gyp:base',
187 '../ui/gfx/gl/gl.gyp:gl', 187 '../ui/gfx/gl/gl.gyp:gl',
188 '../ui/gfx/surface/surface.gyp:surface', 188 '../ui/gfx/surface/surface.gyp:surface',
189 '../ui/ui.gyp:ui_gfx', 189 '../ui/ui.gyp:ui',
190 '../third_party/angle/src/build_angle.gyp:translator_glsl', 190 '../third_party/angle/src/build_angle.gyp:translator_glsl',
191 ], 191 ],
192 'sources': [ 192 'sources': [
193 'command_buffer/service/buffer_manager.h', 193 'command_buffer/service/buffer_manager.h',
194 'command_buffer/service/buffer_manager.cc', 194 'command_buffer/service/buffer_manager.cc',
195 'command_buffer/service/framebuffer_manager.h', 195 'command_buffer/service/framebuffer_manager.h',
196 'command_buffer/service/framebuffer_manager.cc', 196 'command_buffer/service/framebuffer_manager.cc',
197 'command_buffer/service/cmd_buffer_engine.h', 197 'command_buffer/service/cmd_buffer_engine.h',
198 'command_buffer/service/cmd_parser.cc', 198 'command_buffer/service/cmd_parser.cc',
199 'command_buffer/service/cmd_parser.h', 199 'command_buffer/service/cmd_parser.h',
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
247 'include_dirs': [ 247 'include_dirs': [
248 '<(DEPTH)/third_party/angle/include', 248 '<(DEPTH)/third_party/angle/include',
249 ], 249 ],
250 }], 250 }],
251 ], 251 ],
252 }, 252 },
253 { 253 {
254 'target_name': 'gpu_unittests', 254 'target_name': 'gpu_unittests',
255 'type': 'executable', 255 'type': 'executable',
256 'dependencies': [ 256 'dependencies': [
257 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
257 '../testing/gmock.gyp:gmock', 258 '../testing/gmock.gyp:gmock',
258 '../testing/gmock.gyp:gmock_main', 259 '../testing/gmock.gyp:gmock_main',
259 '../testing/gtest.gyp:gtest', 260 '../testing/gtest.gyp:gtest',
260 '../ui/gfx/gl/gl.gyp:gl', 261 '../ui/gfx/gl/gl.gyp:gl',
261 'command_buffer_client', 262 'command_buffer_client',
262 'command_buffer_common', 263 'command_buffer_common',
263 'command_buffer_service', 264 'command_buffer_service',
264 'gpu_unittest_utils', 265 'gpu_unittest_utils',
265 'gles2_implementation_client_side_arrays', 266 'gles2_implementation_client_side_arrays',
266 'gles2_cmd_helper', 267 'gles2_cmd_helper',
(...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after
364 }, 365 },
365 ], 366 ],
366 'conditions': [ 367 'conditions': [
367 ['OS == "win"', 368 ['OS == "win"',
368 { 369 {
369 'targets': [ 370 'targets': [
370 { 371 {
371 'target_name': 'gles2_demo', 372 'target_name': 'gles2_demo',
372 'type': 'executable', 373 'type': 'executable',
373 'dependencies': [ 374 'dependencies': [
375 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:d ynamic_annotations',
374 'command_buffer_service', 376 'command_buffer_service',
375 'gles2_demo_lib', 377 'gles2_demo_lib',
376 ], 378 ],
377 'sources': [ 379 'sources': [
378 'command_buffer/client/gles2_demo.cc', 380 'command_buffer/client/gles2_demo.cc',
379 ], 381 ],
380 'msvs_settings': { 382 'msvs_settings': {
381 'VCLinkerTool': { 383 'VCLinkerTool': {
382 # 0 == not set 384 # 0 == not set
383 # 1 == /SUBSYSTEM:CONSOLE 385 # 1 == /SUBSYSTEM:CONSOLE
384 # 2 == /SUBSYSTEM:WINDOWS 386 # 2 == /SUBSYSTEM:WINDOWS
385 'SubSystem': '2', 387 'SubSystem': '2',
386 }, 388 },
387 }, 389 },
388 }, 390 },
389 ], 391 ],
390 }, 392 },
391 ], 393 ],
392 ], 394 ],
393 } 395 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698