| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 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 508 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 ['OS=="win"', { | 519 ['OS=="win"', { |
| 520 'defines': [ | 520 'defines': [ |
| 521 '__STD_C', | 521 '__STD_C', |
| 522 '_CRT_SECURE_NO_DEPRECATE', | 522 '_CRT_SECURE_NO_DEPRECATE', |
| 523 '_SCL_SECURE_NO_DEPRECATE', | 523 '_SCL_SECURE_NO_DEPRECATE', |
| 524 ], | 524 ], |
| 525 'include_dirs': [ | 525 'include_dirs': [ |
| 526 'third_party/wtl/include', | 526 'third_party/wtl/include', |
| 527 ], | 527 ], |
| 528 }], | 528 }], |
| 529 ['OS=="win" or (OS=="linux" and target_arch!="arm")', { | 529 ['enable_gpu==1', { |
| 530 'dependencies': [ | 530 'dependencies': [ |
| 531 '../gpu/gpu.gyp:command_buffer_service', | 531 '../gpu/gpu.gyp:command_buffer_service', |
| 532 ], | 532 ], |
| 533 'sources': [ | 533 'sources': [ |
| 534 'plugin/command_buffer_stub.cc', | 534 'plugin/command_buffer_stub.cc', |
| 535 'plugin/command_buffer_stub.h', | 535 'plugin/command_buffer_stub.h', |
| 536 ], | 536 ], |
| 537 },], | 537 },], |
| 538 ['OS=="linux" or OS=="freebsd"', { | 538 ['OS=="linux" or OS=="freebsd"', { |
| 539 'dependencies': [ | 539 'dependencies': [ |
| (...skipping 1062 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1602 }], # targets | 1602 }], # targets |
| 1603 }], # OS=="linux" or OS=="freebsd" | 1603 }], # OS=="linux" or OS=="freebsd" |
| 1604 ], # 'conditions' | 1604 ], # 'conditions' |
| 1605 } | 1605 } |
| 1606 | 1606 |
| 1607 # Local Variables: | 1607 # Local Variables: |
| 1608 # tab-width:2 | 1608 # tab-width:2 |
| 1609 # indent-tabs-mode:nil | 1609 # indent-tabs-mode:nil |
| 1610 # End: | 1610 # End: |
| 1611 # vim: set expandtab tabstop=2 shiftwidth=2: | 1611 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |