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

Side by Side Diff: base/base.gyp

Issue 9706022: Build Android's MessagePumpForUI by upstreaming SystemMessageHandler (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch Created 8 years, 9 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/SystemMessageHandler.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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
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/PathUtils.java', 125 'android/java/org/chromium/base/PathUtils.java',
126 'android/java/org/chromium/base/SystemMessageHandler.java',
126 ], 127 ],
127 'outputs': [ 128 'outputs': [
128 '<(SHARED_INTERMEDIATE_DIR)/base/jni/path_utils_jni.h', 129 '<(SHARED_INTERMEDIATE_DIR)/base/jni/path_utils_jni.h',
130 '<(SHARED_INTERMEDIATE_DIR)/base/jni/system_message_handler_jni.h',
129 ], 131 ],
130 'action': [ 132 'action': [
131 'python', 133 'python',
132 'android/jni_generator/jni_generator.py', 134 'android/jni_generator/jni_generator.py',
133 '-o', 135 '-o',
134 '<@(_inputs)', 136 '<@(_inputs)',
135 '<@(_outputs)', 137 '<@(_outputs)',
136 ], 138 ],
137 } 139 }
138 ], 140 ],
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 # treated as weak imports in dependents, who still must 639 # treated as weak imports in dependents, who still must
638 # #include closure_blocks_leopard_compat.h to get weak imports. 640 # #include closure_blocks_leopard_compat.h to get weak imports.
639 'type': 'none', 641 'type': 'none',
640 }], 642 }],
641 ], 643 ],
642 }, 644 },
643 ], 645 ],
644 }], 646 }],
645 ], 647 ],
646 } 648 }
OLDNEW
« no previous file with comments | « base/android/java/org/chromium/base/SystemMessageHandler.java ('k') | base/base.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698