OLD | NEW |
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 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
340 ], | 340 ], |
341 }, | 341 }, |
342 'sources': [ | 342 'sources': [ |
343 'pgl/command_buffer_pepper.cc', | 343 'pgl/command_buffer_pepper.cc', |
344 'pgl/command_buffer_pepper.h', | 344 'pgl/command_buffer_pepper.h', |
345 'pgl/pgl_proc_address.cc', | 345 'pgl/pgl_proc_address.cc', |
346 'pgl/pgl.cc', | 346 'pgl/pgl.cc', |
347 'pgl/pgl.h', | 347 'pgl/pgl.h', |
348 ], | 348 ], |
349 }, | 349 }, |
| 350 { |
| 351 'target_name': 'gpu_ipc', |
| 352 'type': 'static_library', |
| 353 'dependencies': [ |
| 354 'command_buffer_client', |
| 355 'gles2_c_lib', |
| 356 ], |
| 357 'include_dirs': [ |
| 358 '..', |
| 359 ], |
| 360 'sources': [ |
| 361 'ipc/gpu_command_buffer_traits.cc', |
| 362 'ipc/gpu_command_buffer_traits.h', |
| 363 ], |
| 364 }, |
350 ], | 365 ], |
351 'conditions': [ | 366 'conditions': [ |
352 ['OS == "win"', | 367 ['OS == "win"', |
353 { | 368 { |
354 'targets': [ | 369 'targets': [ |
355 { | 370 { |
356 'target_name': 'gles2_demo', | 371 'target_name': 'gles2_demo', |
357 'type': 'executable', | 372 'type': 'executable', |
358 'dependencies': [ | 373 'dependencies': [ |
359 'command_buffer_service', | 374 'command_buffer_service', |
(...skipping 15 matching lines...) Expand all Loading... |
375 }, | 390 }, |
376 ], | 391 ], |
377 ], | 392 ], |
378 } | 393 } |
379 | 394 |
380 # Local Variables: | 395 # Local Variables: |
381 # tab-width:2 | 396 # tab-width:2 |
382 # indent-tabs-mode:nil | 397 # indent-tabs-mode:nil |
383 # End: | 398 # End: |
384 # vim: set expandtab tabstop=2 shiftwidth=2: | 399 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |