OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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 | 8 |
9 'variables': { | 9 'variables': { |
10 'version_py_path': 'tools/build/version.py', | 10 'version_py_path': 'tools/build/version.py', |
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
443 'plugin/plugin_thread.h', | 443 'plugin/plugin_thread.h', |
444 'plugin/webplugin_delegate_stub.cc', | 444 'plugin/webplugin_delegate_stub.cc', |
445 'plugin/webplugin_delegate_stub.h', | 445 'plugin/webplugin_delegate_stub.h', |
446 'plugin/webplugin_proxy.cc', | 446 'plugin/webplugin_proxy.cc', |
447 'plugin/webplugin_proxy.h', | 447 'plugin/webplugin_proxy.h', |
448 ], | 448 ], |
449 # These are layered in conditionals in the event other platforms | 449 # These are layered in conditionals in the event other platforms |
450 # end up using this module as well. | 450 # end up using this module as well. |
451 'conditions': [ | 451 'conditions': [ |
452 ['OS=="win"', { | 452 ['OS=="win"', { |
453 'dependencies': [ | |
454 '../gpu/gpu.gyp:command_buffer_service', | |
455 ], | |
456 'defines': [ | 453 'defines': [ |
457 '__STD_C', | 454 '__STD_C', |
458 '_CRT_SECURE_NO_DEPRECATE', | 455 '_CRT_SECURE_NO_DEPRECATE', |
459 '_SCL_SECURE_NO_DEPRECATE', | 456 '_SCL_SECURE_NO_DEPRECATE', |
460 ], | 457 ], |
461 'include_dirs': [ | 458 'include_dirs': [ |
462 'third_party/wtl/include', | 459 'third_party/wtl/include', |
463 ], | 460 ], |
| 461 }], |
| 462 ['OS=="win" or (OS=="linux" and target_arch!="arm")', { |
| 463 'dependencies': [ |
| 464 '../gpu/gpu.gyp:command_buffer_service', |
| 465 ], |
464 'sources': [ | 466 'sources': [ |
465 'plugin/command_buffer_stub.cc', | 467 'plugin/command_buffer_stub.cc', |
466 'plugin/command_buffer_stub.h', | 468 'plugin/command_buffer_stub.h', |
467 ], | 469 ], |
468 },], | 470 },], |
469 ['OS=="linux" or OS=="freebsd"', { | 471 ['OS=="linux" or OS=="freebsd"', { |
470 'dependencies': [ | 472 'dependencies': [ |
471 '../build/linux/system.gyp:gtk', | 473 '../build/linux/system.gyp:gtk', |
472 ], | 474 ], |
473 }], | 475 }], |
(...skipping 996 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1470 }], # targets | 1472 }], # targets |
1471 }], # OS=="linux" or OS=="freebsd" | 1473 }], # OS=="linux" or OS=="freebsd" |
1472 ], # 'conditions' | 1474 ], # 'conditions' |
1473 } | 1475 } |
1474 | 1476 |
1475 # Local Variables: | 1477 # Local Variables: |
1476 # tab-width:2 | 1478 # tab-width:2 |
1477 # indent-tabs-mode:nil | 1479 # indent-tabs-mode:nil |
1478 # End: | 1480 # End: |
1479 # vim: set expandtab tabstop=2 shiftwidth=2: | 1481 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |