| 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 455 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 466 ], | 466 ], |
| 467 'conditions': [ | 467 'conditions': [ |
| 468 ['configuration_policy==1', { | 468 ['configuration_policy==1', { |
| 469 'sources/': [ | 469 'sources/': [ |
| 470 ['include', '^policy/'], | 470 ['include', '^policy/'], |
| 471 ], | 471 ], |
| 472 }], | 472 }], |
| 473 ], | 473 ], |
| 474 }], | 474 }], |
| 475 ['disable_nacl==0', { | 475 ['disable_nacl==0', { |
| 476 'includes': [ |
| 477 'nacl/nacl_defines.gypi', |
| 478 ], |
| 479 'defines': [ |
| 480 '<@(nacl_defines)', |
| 481 ], |
| 476 'sources': [ | 482 'sources': [ |
| 477 'nacl/browser/nacl_file_host_unittest.cc', | 483 'nacl/browser/nacl_file_host_unittest.cc', |
| 478 'nacl/browser/nacl_process_host_unittest.cc', | 484 'nacl/browser/nacl_process_host_unittest.cc', |
| 479 'nacl/browser/nacl_validation_cache_unittest.cc', | 485 'nacl/browser/nacl_validation_cache_unittest.cc', |
| 480 'nacl/browser/pnacl_host_unittest.cc', | 486 'nacl/browser/pnacl_host_unittest.cc', |
| 481 'nacl/browser/pnacl_translation_cache_unittest.cc', | 487 'nacl/browser/pnacl_translation_cache_unittest.cc', |
| 482 'nacl/browser/test_nacl_browser_delegate.cc', | 488 'nacl/browser/test_nacl_browser_delegate.cc', |
| 483 'nacl/zygote/nacl_fork_delegate_linux_unittest.cc', | 489 'nacl/zygote/nacl_fork_delegate_linux_unittest.cc', |
| 484 ], | 490 ], |
| 485 'dependencies': [ | 491 'dependencies': [ |
| (...skipping 336 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 822 'dependencies': [ | 828 'dependencies': [ |
| 823 '../base/allocator/allocator.gyp:allocator', | 829 '../base/allocator/allocator.gyp:allocator', |
| 824 ], | 830 ], |
| 825 }], | 831 }], |
| 826 ], | 832 ], |
| 827 }, | 833 }, |
| 828 ], | 834 ], |
| 829 }], | 835 }], |
| 830 ], | 836 ], |
| 831 } | 837 } |
| OLD | NEW |