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

Side by Side Diff: content/content.gyp

Issue 12939021: Make the build control what library(/ies) to load (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@antpy
Patch Set: Created 7 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
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 283 matching lines...) Expand 10 before | Expand all | Expand 10 after
294 'variables': { 294 'variables': {
295 'aidl_interface_file': 'public/android/java/src/org/chromium/content /common/common.aidl', 295 'aidl_interface_file': 'public/android/java/src/org/chromium/content /common/common.aidl',
296 }, 296 },
297 'sources': [ 297 'sources': [
298 'public/android/java/src/org/chromium/content/common/IChildProcessCa llback.aidl', 298 'public/android/java/src/org/chromium/content/common/IChildProcessCa llback.aidl',
299 'public/android/java/src/org/chromium/content/common/IChildProcessSe rvice.aidl', 299 'public/android/java/src/org/chromium/content/common/IChildProcessSe rvice.aidl',
300 ], 300 ],
301 'includes': [ '../build/java_aidl.gypi' ], 301 'includes': [ '../build/java_aidl.gypi' ],
302 }, 302 },
303 { 303 {
304 'target_name': 'content_native_libraries_gen',
305 'type': 'none',
306 'sources': [
307 'public/android/java/templates/NativeLibraries.template',
308 ],
309 'variables': {
310 'package_name': 'org/chromium/content/app',
311 'include_path': 'public/android/java/templates',
312 'template_deps': [
313 'public/android/java/templates/native_libraries_array.h'
314 ],
315 },
316 'includes': [ '../build/android/java_cpp_template.gypi' ],
317 },
318 {
304 'target_name': 'content_java', 319 'target_name': 'content_java',
305 'type': 'none', 320 'type': 'none',
306 'dependencies': [ 321 'dependencies': [
307 '../base/base.gyp:base', 322 '../base/base.gyp:base',
308 '../media/media.gyp:media_java', 323 '../media/media.gyp:media_java',
309 '../net/net.gyp:net', 324 '../net/net.gyp:net',
310 '../ui/ui.gyp:ui_java', 325 '../ui/ui.gyp:ui_java',
311 'common_aidl', 326 'common_aidl',
312 'content_common', 327 'content_common',
313 'page_transition_types_java', 328 'page_transition_types_java',
314 'result_codes_java', 329 'result_codes_java',
330 'content_native_libraries_gen',
315 ], 331 ],
316 'variables': { 332 'variables': {
317 'java_in_dir': '../content/public/android/java', 333 'java_in_dir': '../content/public/android/java',
334 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
318 'has_java_resources': 1, 335 'has_java_resources': 1,
319 'R_package': 'org.chromium.content', 336 'R_package': 'org.chromium.content',
320 'R_package_relpath': 'org/chromium/content', 337 'R_package_relpath': 'org/chromium/content',
321 'java_strings_grd': 'android_content_strings.grd', 338 'java_strings_grd': 'android_content_strings.grd',
322 }, 339 },
323 'conditions': [ 340 'conditions': [
324 ['android_webview_build == 0', { 341 ['android_webview_build == 0', {
325 'dependencies': [ 342 'dependencies': [
326 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java', 343 '../third_party/eyesfree/eyesfree.gyp:eyesfree_java',
327 '../third_party/guava/guava.gyp:guava_javalib', 344 '../third_party/guava/guava.gyp:guava_javalib',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
394 'include_dirs': [ 411 'include_dirs': [
395 '<(SHARED_INTERMEDIATE_DIR)/content', 412 '<(SHARED_INTERMEDIATE_DIR)/content',
396 ], 413 ],
397 }, 414 },
398 'includes': [ 'content_jni.gypi' ], 415 'includes': [ 'content_jni.gypi' ],
399 }, 416 },
400 ], 417 ],
401 }], # OS == "android" 418 }], # OS == "android"
402 ], 419 ],
403 } 420 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698