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 'includes': [ | 6 'includes': [ |
7 'breakpad_sender.gypi', | 7 'breakpad_sender.gypi', |
8 'breakpad_handler.gypi', | 8 'breakpad_handler.gypi', |
9 ], | 9 ], |
10 'conditions': [ | 10 'conditions': [ |
(...skipping 678 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
689 # Gyp to rerun | 689 # Gyp to rerun |
690 're_run_targets': [ | 690 're_run_targets': [ |
691 'breakpad/breakpad.gyp', | 691 'breakpad/breakpad.gyp', |
692 ], | 692 ], |
693 }, | 693 }, |
694 'includes': ['../build/ios/mac_build.gypi'], | 694 'includes': ['../build/ios/mac_build.gypi'], |
695 'actions': [ | 695 'actions': [ |
696 { | 696 { |
697 'action_name': 'compile breakpad utilities', | 697 'action_name': 'compile breakpad utilities', |
698 'inputs': [], | 698 'inputs': [], |
699 'outputs': [], | 699 # A nonexistant name forces the ninja cmd every time. |
Mark Mentovai
2013/05/01 18:12:10
spelling: nonexistent
spelling: command, not cmd
| |
700 'outputs': ['compile_breakpad_utilities'], | |
stuartmorgan
2013/05/01 14:03:42
No outputs should also force it every time. What p
justincohen
2013/05/01 14:08:57
ninja doesn't like no outputs.
On 2013/05/01 14:0
| |
700 'action': [ | 701 'action': [ |
701 '<@(ninja_cmd)', | 702 '<@(ninja_cmd)', |
702 'dump_syms', | 703 'dump_syms', |
703 'symupload', | 704 'symupload', |
704 ], | 705 ], |
705 'message': 'Generating the breakpad executables', | 706 'message': 'Generating the breakpad executables', |
706 }, | 707 }, |
707 ], | 708 ], |
708 }, | 709 }, |
709 { | 710 { |
(...skipping 115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
825 'include_dirs': [ | 826 'include_dirs': [ |
826 '<(DEPTH)/third_party/GTM', | 827 '<(DEPTH)/third_party/GTM', |
827 '<(DEPTH)/third_party/GTM/Foundation', | 828 '<(DEPTH)/third_party/GTM/Foundation', |
828 ], | 829 ], |
829 }, | 830 }, |
830 }, | 831 }, |
831 ], | 832 ], |
832 }], | 833 }], |
833 ], | 834 ], |
834 } | 835 } |
OLD | NEW |