| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'base_target': 0, | 8 'base_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 648 ['exclude', '^process_linux\\.cc$'], | 648 ['exclude', '^process_linux\\.cc$'], |
| 649 ['exclude', '^process_util_linux\\.cc$'], | 649 ['exclude', '^process_util_linux\\.cc$'], |
| 650 ['exclude', '^sys_info_linux\\.cc$'], | 650 ['exclude', '^sys_info_linux\\.cc$'], |
| 651 ], | 651 ], |
| 652 }], | 652 }], |
| 653 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { | 653 ['<(chromeos)!=1 or >(nacl_untrusted_build)==1', { |
| 654 'sources/': [ | 654 'sources/': [ |
| 655 ['exclude', '^chromeos/'], | 655 ['exclude', '^chromeos/'], |
| 656 ], | 656 ], |
| 657 }], | 657 }], |
| 658 # Remove all unnecessary files for build_nexe.py to avoid exceeding |
| 659 # command-line-string limitation when building NaCl on Windows. |
| 660 ['OS == "win" and >(nacl_untrusted_build)==1', { |
| 661 'sources/': [ ['exclude', '\\.h$'] ], |
| 662 }], |
| 658 ], | 663 ], |
| 659 }], | 664 }], |
| 660 ], | 665 ], |
| 661 }, | 666 }, |
| 662 } | 667 } |
| OLD | NEW |