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

Side by Side Diff: base/base.gyp

Issue 9838033: Upstream native crash handling changes for Android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: breakpad gyp changes 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
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 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
639 # treated as weak imports in dependents, who still must 641 # treated as weak imports in dependents, who still must
640 # #include closure_blocks_leopard_compat.h to get weak imports. 642 # #include closure_blocks_leopard_compat.h to get weak imports.
641 'type': 'none', 643 'type': 'none',
642 }], 644 }],
643 ], 645 ],
644 }, 646 },
645 ], 647 ],
646 }], 648 }],
647 ], 649 ],
648 } 650 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698