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

Side by Side Diff: sandbox/mac/sandbox_mac.gypi

Issue 332403005: Fix no-op builds, caused by an incorrect output in //sandbox/mac:generate_stubs. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'sandbox', 8 'target_name': 'sandbox',
9 'type': '<(component)', 9 'type': '<(component)',
10 'sources': [ 10 'sources': [
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 }, 47 },
48 'action_name': 'generate_stubs', 48 'action_name': 'generate_stubs',
49 'inputs': [ 49 'inputs': [
50 '<(generate_stubs_script)', 50 '<(generate_stubs_script)',
51 '<(generate_stubs_header_path)', 51 '<(generate_stubs_header_path)',
52 '<(generate_stubs_sig_public_path)', 52 '<(generate_stubs_sig_public_path)',
53 '<(generate_stubs_sig_private_path)', 53 '<(generate_stubs_sig_private_path)',
54 ], 54 ],
55 'outputs': [ 55 'outputs': [
56 '<(INTERMEDIATE_DIR)/<(generate_stubs_output_stem).cc', 56 '<(INTERMEDIATE_DIR)/<(generate_stubs_output_stem).cc',
57 '<(INTERMEDIATE_DIR)/<(generate_stubs_project)/<(generate_stubs_outp ut_stem).h', 57 '<(SHARED_INTERMEDIATE_DIR)/<(generate_stubs_project)/<(generate_stu bs_output_stem).h',
58 ], 58 ],
59 'action': [ 59 'action': [
60 'python', 60 'python',
61 '<(generate_stubs_script)', 61 '<(generate_stubs_script)',
62 '-i', '<(INTERMEDIATE_DIR)', 62 '-i', '<(INTERMEDIATE_DIR)',
63 '-o', '<(SHARED_INTERMEDIATE_DIR)/<(generate_stubs_project)', 63 '-o', '<(SHARED_INTERMEDIATE_DIR)/<(generate_stubs_project)',
64 '-t', 'posix_stubs', 64 '-t', 'posix_stubs',
65 '-e', '<(generate_stubs_header_path)', 65 '-e', '<(generate_stubs_header_path)',
66 '-s', '<(generate_stubs_output_stem)', 66 '-s', '<(generate_stubs_output_stem)',
67 '-p', '<(generate_stubs_project)', 67 '-p', '<(generate_stubs_project)',
(...skipping 23 matching lines...) Expand all
91 ], 91 ],
92 'link_settings': { 92 'link_settings': {
93 'libraries': [ 93 'libraries': [
94 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework', 94 '$(SDKROOT)/System/Library/Frameworks/CoreFoundation.framework',
95 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework', 95 '$(SDKROOT)/System/Library/Frameworks/Foundation.framework',
96 ], 96 ],
97 }, 97 },
98 }, 98 },
99 ], 99 ],
100 } 100 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698