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

Side by Side Diff: content/content.gyp

Issue 11363150: Support Java resources within content and chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 1 month 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, # 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 'conditions': [ 9 'conditions': [
10 ['inside_chromium_build==0', { 10 ['inside_chromium_build==0', {
(...skipping 271 matching lines...) Expand 10 before | Expand all | Expand 10 after
282 'dependencies': [ 282 'dependencies': [
283 '../base/base.gyp:base', 283 '../base/base.gyp:base',
284 '../net/net.gyp:net', 284 '../net/net.gyp:net',
285 '../ui/ui.gyp:ui_java', 285 '../ui/ui.gyp:ui_java',
286 'common_aidl', 286 'common_aidl',
287 'content_common', 287 'content_common',
288 ], 288 ],
289 'variables': { 289 'variables': {
290 'package_name': 'content', 290 'package_name': 'content',
291 'java_in_dir': '../content/public/android/java', 291 'java_in_dir': '../content/public/android/java',
292 'has_java_resources': 1,
293 'R_package': 'org.chromium.content',
294 'R_package_path_': 'org/chromium/content',
292 }, 295 },
293 'includes': [ '../build/java.gypi' ], 296 'includes': [ '../build/java.gypi' ],
294 }, 297 },
295 { 298 {
296 'target_name': 'surface_texture_jni_headers', 299 'target_name': 'surface_texture_jni_headers',
297 'type': 'none', 300 'type': 'none',
298 'variables': { 301 'variables': {
299 'jni_gen_dir': 'content', 302 'jni_gen_dir': 'content',
300 'input_java_class': 'android/graphics/SurfaceTexture.class', 303 'input_java_class': 'android/graphics/SurfaceTexture.class',
301 'input_jar_file': '<(android_sdk)/android.jar', 304 'input_jar_file': '<(android_sdk)/android.jar',
(...skipping 16 matching lines...) Expand all
318 'dependencies': [ 321 'dependencies': [
319 'surface_texture_jni_headers', 322 'surface_texture_jni_headers',
320 'surface_jni_headers', 323 'surface_jni_headers',
321 ], 324 ],
322 'includes': [ 'content_jni.gypi' ], 325 'includes': [ 'content_jni.gypi' ],
323 }, 326 },
324 ], 327 ],
325 }], # OS == "android" 328 }], # OS == "android"
326 ], 329 ],
327 } 330 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698