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

Side by Side Diff: content/content.gyp

Issue 10377059: Android content shell bringup. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix deps so builds on clean machine Created 8 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 | Annotate | Revision Log
« no previous file with comments | « content/browser/android/trace_event_binding.cc ('k') | content/content_browser.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, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)', 8 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/ directxsdk)',
9 }, 9 },
10 'includes': [ 10 'includes': [
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 {'target_name': 'content_worker', 193 {'target_name': 'content_worker',
194 'type': 'none', 194 'type': 'none',
195 'dependencies': ['content'], 195 'dependencies': ['content'],
196 }, 196 },
197 ], 197 ],
198 }, 198 },
199 ], 199 ],
200 ['OS == "android"', { 200 ['OS == "android"', {
201 'targets': [ 201 'targets': [
202 { 202 {
203 'target_name': 'content_jni_headers',
204 'type': 'none',
205 'variables': {
206 'java_sources': [
207 '../content/public/android/java/org/chromium/content/browser/Locat ionProvider.java',
208 ],
209 'jni_headers': [
210 '<(SHARED_INTERMEDIATE_DIR)/content/jni/location_provider_jni.h',
211 ],
212 },
213 'includes': [ '../build/jni_generator.gypi' ],
214 },
215 {
216 'target_name': 'content_java', 203 'target_name': 'content_java',
217 'type': 'none', 204 'type': 'none',
205 'dependencies': ['../base/base.gyp:base_java'],
218 'variables': { 206 'variables': {
219 'package_name': 'content', 207 'package_name': 'content',
220 'java_in_dir': '../content/public/android/java', 208 'java_in_dir': '../content/public/android/java',
221 }, 209 },
222 'dependencies': [
223 '../base/base.gyp:base_java',
224 ],
225 'includes': [ '../build/java.gypi' ], 210 'includes': [ '../build/java.gypi' ],
226 }, 211 },
212 {
213 'target_name': 'content_jni_headers',
214 'type': 'none',
215 'includes': [ 'content_jni.gypi' ],
216 },
227 ], 217 ],
228 }], # OS == "android" 218 }], # OS == "android"
229 ], 219 ],
230 } 220 }
OLDNEW
« no previous file with comments | « content/browser/android/trace_event_binding.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698