OLD | NEW |
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 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. | 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e
ngine. |
9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', | 9 'directxsdk_exists': '<!(python <(DEPTH)/build/dir_exists.py ../third_party/
directxsdk)', |
10 }, | 10 }, |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 'type': 'none', | 356 'type': 'none', |
357 'dependencies': [ | 357 'dependencies': [ |
358 '../base/base.gyp:base', | 358 '../base/base.gyp:base', |
359 '../media/media.gyp:media_java', | 359 '../media/media.gyp:media_java', |
360 '../net/net.gyp:net', | 360 '../net/net.gyp:net', |
361 '../ui/ui.gyp:ui_java', | 361 '../ui/ui.gyp:ui_java', |
362 'common_aidl', | 362 'common_aidl', |
363 'content_common', | 363 'content_common', |
364 'page_transition_types_java', | 364 'page_transition_types_java', |
365 'result_codes_java', | 365 'result_codes_java', |
| 366 'top_controls_state_java', |
366 'content_native_libraries_gen', | 367 'content_native_libraries_gen', |
367 ], | 368 ], |
368 'variables': { | 369 'variables': { |
369 'java_in_dir': '../content/public/android/java', | 370 'java_in_dir': '../content/public/android/java', |
370 'jar_excluded_classes': [ '*/NativeLibraries.class' ], | 371 'jar_excluded_classes': [ '*/NativeLibraries.class' ], |
371 'has_java_resources': 1, | 372 'has_java_resources': 1, |
372 'R_package': 'org.chromium.content', | 373 'R_package': 'org.chromium.content', |
373 'R_package_relpath': 'org/chromium/content', | 374 'R_package_relpath': 'org/chromium/content', |
374 'java_strings_grd': 'android_content_strings.grd', | 375 'java_strings_grd': 'android_content_strings.grd', |
375 }, | 376 }, |
(...skipping 25 matching lines...) Expand all Loading... |
401 'sources': [ | 402 'sources': [ |
402 'public/android/java/src/org/chromium/content/common/ResultCodes.tem
plate', | 403 'public/android/java/src/org/chromium/content/common/ResultCodes.tem
plate', |
403 ], | 404 ], |
404 'variables': { | 405 'variables': { |
405 'package_name': 'org/chromium/content/common', | 406 'package_name': 'org/chromium/content/common', |
406 'template_deps': ['public/common/result_codes_list.h'], | 407 'template_deps': ['public/common/result_codes_list.h'], |
407 }, | 408 }, |
408 'includes': [ '../build/android/java_cpp_template.gypi' ], | 409 'includes': [ '../build/android/java_cpp_template.gypi' ], |
409 }, | 410 }, |
410 { | 411 { |
| 412 'target_name': 'top_controls_state_java', |
| 413 'type': 'none', |
| 414 'sources': [ |
| 415 'public/android/java/src/org/chromium/content/common/TopControlsStat
e.template', |
| 416 ], |
| 417 'variables': { |
| 418 'package_name': 'org/chromium/content/common', |
| 419 'template_deps': ['public/common/top_controls_state_list.h'], |
| 420 }, |
| 421 'includes': [ '../build/android/java_cpp_template.gypi' ], |
| 422 }, |
| 423 { |
411 'target_name': 'java_set_jni_headers', | 424 'target_name': 'java_set_jni_headers', |
412 'type': 'none', | 425 'type': 'none', |
413 'variables': { | 426 'variables': { |
414 'jni_gen_package': 'content', | 427 'jni_gen_package': 'content', |
415 'input_java_class': 'java/util/HashSet.class', | 428 'input_java_class': 'java/util/HashSet.class', |
416 }, | 429 }, |
417 'includes': [ '../build/jar_file_jni_generator.gypi' ], | 430 'includes': [ '../build/jar_file_jni_generator.gypi' ], |
418 }, | 431 }, |
419 | 432 |
420 { | 433 { |
421 'target_name': 'content_jni_headers', | 434 'target_name': 'content_jni_headers', |
422 'type': 'none', | 435 'type': 'none', |
423 'dependencies': [ | 436 'dependencies': [ |
424 'java_set_jni_headers', | 437 'java_set_jni_headers', |
425 ], | 438 ], |
426 'direct_dependent_settings': { | 439 'direct_dependent_settings': { |
427 'include_dirs': [ | 440 'include_dirs': [ |
428 '<(SHARED_INTERMEDIATE_DIR)/content', | 441 '<(SHARED_INTERMEDIATE_DIR)/content', |
429 ], | 442 ], |
430 }, | 443 }, |
431 'includes': [ 'content_jni.gypi' ], | 444 'includes': [ 'content_jni.gypi' ], |
432 }, | 445 }, |
433 ], | 446 ], |
434 }], # OS == "android" | 447 }], # OS == "android" |
435 ], | 448 ], |
436 } | 449 } |
OLD | NEW |