Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(78)

Side by Side Diff: testing/iossim/iossim.gyp

Issue 14577007: Gyp changes for ninja iOS build. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Handle ninja-ios type in landmines Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698