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

Side by Side Diff: base/base.gyp

Issue 9960072: Upstream crash changes for android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Fixes to gyp and a typo in breakpad_linuxish.cc Created 8 years, 8 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 | « base/android/java/org/chromium/base/BuildInfo.java ('k') | base/base.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 '../build/win_precompile.gypi', 10 '../build/win_precompile.gypi',
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 ], 115 ],
116 }, 116 },
117 { 117 {
118 'target_name': 'base_jni_headers', 118 'target_name': 'base_jni_headers',
119 'type': 'none', 119 'type': 'none',
120 'actions': [ 120 'actions': [
121 { 121 {
122 'action_name': 'generate_jni_headers', 122 'action_name': 'generate_jni_headers',
123 'inputs': [ 123 'inputs': [
124 'android/jni_generator/jni_generator.py', 124 'android/jni_generator/jni_generator.py',
125 'android/java/org/chromium/base/BuildInfo.java',
125 'android/java/org/chromium/base/PathUtils.java', 126 'android/java/org/chromium/base/PathUtils.java',
126 'android/java/org/chromium/base/SystemMessageHandler.java', 127 'android/java/org/chromium/base/SystemMessageHandler.java',
127 ], 128 ],
128 'outputs': [ 129 'outputs': [
130 '<(SHARED_INTERMEDIATE_DIR)/base/jni/build_info_jni.h',
129 '<(SHARED_INTERMEDIATE_DIR)/base/jni/path_utils_jni.h', 131 '<(SHARED_INTERMEDIATE_DIR)/base/jni/path_utils_jni.h',
130 '<(SHARED_INTERMEDIATE_DIR)/base/jni/system_message_handler_jni.h', 132 '<(SHARED_INTERMEDIATE_DIR)/base/jni/system_message_handler_jni.h',
131 ], 133 ],
132 'action': [ 134 'action': [
133 'python', 135 'python',
134 'android/jni_generator/jni_generator.py', 136 'android/jni_generator/jni_generator.py',
135 '-o', 137 '-o',
136 '<@(_inputs)', 138 '<@(_inputs)',
137 '<@(_outputs)', 139 '<@(_outputs)',
138 ], 140 ],
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
656 # treated as weak imports in dependents, who still must 658 # treated as weak imports in dependents, who still must
657 # #include closure_blocks_leopard_compat.h to get weak imports. 659 # #include closure_blocks_leopard_compat.h to get weak imports.
658 'type': 'none', 660 'type': 'none',
659 }], 661 }],
660 ], 662 ],
661 }, 663 },
662 ], 664 ],
663 }], 665 }],
664 ], 666 ],
665 } 667 }
OLDNEW
« no previous file with comments | « base/android/java/org/chromium/base/BuildInfo.java ('k') | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698