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

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: remove obsolete findbugs warnings 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 272 matching lines...) Expand 10 before | Expand all | Expand 10 after
283 'dependencies': [ 283 'dependencies': [
284 '../base/base.gyp:base', 284 '../base/base.gyp:base',
285 '../net/net.gyp:net', 285 '../net/net.gyp:net',
286 '../ui/ui.gyp:ui_java', 286 '../ui/ui.gyp:ui_java',
287 'common_aidl', 287 'common_aidl',
288 'content_common', 288 'content_common',
289 ], 289 ],
290 'variables': { 290 'variables': {
291 'package_name': 'content', 291 'package_name': 'content',
292 'java_in_dir': '../content/public/android/java', 292 'java_in_dir': '../content/public/android/java',
293 'has_java_resources': 1,
294 'R_package': 'org.chromium.content',
295 'R_package_relpath': 'org/chromium/content',
293 }, 296 },
294 'includes': [ '../build/java.gypi' ], 297 'includes': [ '../build/java.gypi' ],
295 }, 298 },
296 { 299 {
297 'target_name': 'surface_texture_jni_headers', 300 'target_name': 'surface_texture_jni_headers',
298 'type': 'none', 301 'type': 'none',
299 'variables': { 302 'variables': {
300 'jni_gen_dir': 'content', 303 'jni_gen_dir': 'content',
301 'input_java_class': 'android/graphics/SurfaceTexture.class', 304 'input_java_class': 'android/graphics/SurfaceTexture.class',
302 'input_jar_file': '<(android_sdk)/android.jar', 305 'input_jar_file': '<(android_sdk)/android.jar',
(...skipping 16 matching lines...) Expand all
319 'dependencies': [ 322 'dependencies': [
320 'surface_texture_jni_headers', 323 'surface_texture_jni_headers',
321 'surface_jni_headers', 324 'surface_jni_headers',
322 ], 325 ],
323 'includes': [ 'content_jni.gypi' ], 326 'includes': [ 'content_jni.gypi' ],
324 }, 327 },
325 ], 328 ],
326 }], # OS == "android" 329 }], # OS == "android"
327 ], 330 ],
328 } 331 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698