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 'conditions': [ | 6 'conditions': [ |
7 ['OS != "ios"', { | 7 ['OS != "ios"', { |
8 'targets': [ | 8 'targets': [ |
9 { | 9 { |
10 'target_name': 'iossim', | 10 'target_name': 'iossim', |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
64 # Gyp to rerun | 64 # Gyp to rerun |
65 're_run_targets': [ | 65 're_run_targets': [ |
66 'testing/iossim/iossim.gyp', | 66 'testing/iossim/iossim.gyp', |
67 ], | 67 ], |
68 }, | 68 }, |
69 'includes': ['../../build/ios/mac_build.gypi'], | 69 'includes': ['../../build/ios/mac_build.gypi'], |
70 'actions': [ | 70 'actions': [ |
71 { | 71 { |
72 'action_name': 'compile iossim', | 72 'action_name': 'compile iossim', |
73 'inputs': [], | 73 'inputs': [], |
74 'outputs': [], | 74 # A nonexistant name forces the ninja cmd every time. |
Mark Mentovai
2013/05/01 18:12:10
As before.
| |
75 'outputs': ['iossim'], | |
75 'action': [ | 76 'action': [ |
76 '<@(ninja_cmd)', | 77 '<@(ninja_cmd)', |
77 'iossim', | 78 'iossim', |
78 ], | 79 ], |
79 'message': 'Generating the iossim executable', | 80 'message': 'Generating the iossim executable', |
80 }, | 81 }, |
81 ], | 82 ], |
82 }, | 83 }, |
83 ], | 84 ], |
84 }, | 85 }, |
85 ], | 86 ], |
86 ], | 87 ], |
87 } | 88 } |
OLD | NEW |