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

Side by Side Diff: content/content.gyp

Issue 15907012: Implement SpeechRecognizerImplAndroid (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased, nits Created 7 years, 6 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
« no previous file with comments | « content/browser/speech/speech_recognizer_impl_android.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 '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 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 'type': 'none', 357 'type': 'none',
358 'dependencies': [ 358 'dependencies': [
359 '../base/base.gyp:base', 359 '../base/base.gyp:base',
360 '../media/media.gyp:media_java', 360 '../media/media.gyp:media_java',
361 '../net/net.gyp:net', 361 '../net/net.gyp:net',
362 '../ui/ui.gyp:ui_java', 362 '../ui/ui.gyp:ui_java',
363 'common_aidl', 363 'common_aidl',
364 'content_common', 364 'content_common',
365 'page_transition_types_java', 365 'page_transition_types_java',
366 'result_codes_java', 366 'result_codes_java',
367 'speech_recognition_error_java',
367 'top_controls_state_java', 368 'top_controls_state_java',
368 'content_native_libraries_gen', 369 'content_native_libraries_gen',
369 ], 370 ],
370 'variables': { 371 'variables': {
371 'java_in_dir': '../content/public/android/java', 372 'java_in_dir': '../content/public/android/java',
372 'jar_excluded_classes': [ '*/NativeLibraries.class' ], 373 'jar_excluded_classes': [ '*/NativeLibraries.class' ],
373 'has_java_resources': 1, 374 'has_java_resources': 1,
374 'R_package': 'org.chromium.content', 375 'R_package': 'org.chromium.content',
375 'R_package_relpath': 'org/chromium/content', 376 'R_package_relpath': 'org/chromium/content',
376 'java_strings_grd': 'android_content_strings.grd', 377 'java_strings_grd': 'android_content_strings.grd',
(...skipping 26 matching lines...) Expand all
403 'sources': [ 404 'sources': [
404 'public/android/java/src/org/chromium/content/common/ResultCodes.tem plate', 405 'public/android/java/src/org/chromium/content/common/ResultCodes.tem plate',
405 ], 406 ],
406 'variables': { 407 'variables': {
407 'package_name': 'org/chromium/content/common', 408 'package_name': 'org/chromium/content/common',
408 'template_deps': ['public/common/result_codes_list.h'], 409 'template_deps': ['public/common/result_codes_list.h'],
409 }, 410 },
410 'includes': [ '../build/android/java_cpp_template.gypi' ], 411 'includes': [ '../build/android/java_cpp_template.gypi' ],
411 }, 412 },
412 { 413 {
414 'target_name': 'speech_recognition_error_java',
415 'type': 'none',
416 'sources': [
417 'public/android/java/src/org/chromium/content/browser/SpeechRecognit ionError.template',
418 ],
419 'variables': {
420 'package_name': 'org/chromium/content/browser',
421 'template_deps': ['public/common/speech_recognition_error_list.h'],
422 },
423 'includes': [ '../build/android/java_cpp_template.gypi' ],
424 },
425 {
413 'target_name': 'top_controls_state_java', 426 'target_name': 'top_controls_state_java',
414 'type': 'none', 427 'type': 'none',
415 'sources': [ 428 'sources': [
416 'public/android/java/src/org/chromium/content/common/TopControlsStat e.template', 429 'public/android/java/src/org/chromium/content/common/TopControlsStat e.template',
417 ], 430 ],
418 'variables': { 431 'variables': {
419 'package_name': 'org/chromium/content/common', 432 'package_name': 'org/chromium/content/common',
420 'template_deps': ['public/common/top_controls_state_list.h'], 433 'template_deps': ['public/common/top_controls_state_list.h'],
421 }, 434 },
422 'includes': [ '../build/android/java_cpp_template.gypi' ], 435 'includes': [ '../build/android/java_cpp_template.gypi' ],
(...skipping 18 matching lines...) Expand all
441 'include_dirs': [ 454 'include_dirs': [
442 '<(SHARED_INTERMEDIATE_DIR)/content', 455 '<(SHARED_INTERMEDIATE_DIR)/content',
443 ], 456 ],
444 }, 457 },
445 'includes': [ 'content_jni.gypi' ], 458 'includes': [ 'content_jni.gypi' ],
446 }, 459 },
447 ], 460 ],
448 }], # OS == "android" 461 }], # OS == "android"
449 ], 462 ],
450 } 463 }
OLDNEW
« no previous file with comments | « content/browser/speech/speech_recognizer_impl_android.cc ('k') | content/content_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698