| OLD | NEW |
| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 # This turns on e.g. the filename-based detection of which | 7 # This turns on e.g. the filename-based detection of which |
| 8 # platforms to include source files on (e.g. files ending in | 8 # platforms to include source files on (e.g. files ending in |
| 9 # _mac.h or _mac.cc are only compiled on MacOSX). | 9 # _mac.h or _mac.cc are only compiled on MacOSX). |
| 10 'chromium_code': 1, | 10 'chromium_code': 1, |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 ], | 461 ], |
| 462 'conditions': [ | 462 'conditions': [ |
| 463 ['configuration_policy==1', { | 463 ['configuration_policy==1', { |
| 464 'sources/': [ | 464 'sources/': [ |
| 465 ['include', '^policy/'], | 465 ['include', '^policy/'], |
| 466 ], | 466 ], |
| 467 }], | 467 }], |
| 468 ], | 468 ], |
| 469 }], | 469 }], |
| 470 ['disable_nacl==0', { | 470 ['disable_nacl==0', { |
| 471 'includes': [ |
| 472 'nacl/nacl_defines.gypi', |
| 473 ], |
| 474 'defines': [ |
| 475 '<@(nacl_defines)', |
| 476 ], |
| 471 'sources': [ | 477 'sources': [ |
| 472 'nacl/browser/nacl_file_host_unittest.cc', | 478 'nacl/browser/nacl_file_host_unittest.cc', |
| 473 'nacl/browser/nacl_process_host_unittest.cc', | 479 'nacl/browser/nacl_process_host_unittest.cc', |
| 474 'nacl/browser/nacl_validation_cache_unittest.cc', | 480 'nacl/browser/nacl_validation_cache_unittest.cc', |
| 475 'nacl/browser/pnacl_host_unittest.cc', | 481 'nacl/browser/pnacl_host_unittest.cc', |
| 476 'nacl/browser/pnacl_translation_cache_unittest.cc', | 482 'nacl/browser/pnacl_translation_cache_unittest.cc', |
| 477 'nacl/browser/test_nacl_browser_delegate.cc', | 483 'nacl/browser/test_nacl_browser_delegate.cc', |
| 478 'nacl/zygote/nacl_fork_delegate_linux_unittest.cc', | 484 'nacl/zygote/nacl_fork_delegate_linux_unittest.cc', |
| 479 ], | 485 ], |
| 480 'dependencies': [ | 486 'dependencies': [ |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 817 'dependencies': [ | 823 'dependencies': [ |
| 818 '../base/allocator/allocator.gyp:allocator', | 824 '../base/allocator/allocator.gyp:allocator', |
| 819 ], | 825 ], |
| 820 }], | 826 }], |
| 821 ], | 827 ], |
| 822 }, | 828 }, |
| 823 ], | 829 ], |
| 824 }], | 830 }], |
| 825 ], | 831 ], |
| 826 } | 832 } |
| OLD | NEW |