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

Side by Side Diff: content/content.gyp

Issue 731133002: Upstream ResourceManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix build failure Created 6 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
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': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' , 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' ,
10 }, 10 },
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 'target_name': 'content_java', 423 'target_name': 'content_java',
424 'type': 'none', 424 'type': 'none',
425 'dependencies': [ 425 'dependencies': [
426 '../base/base.gyp:base', 426 '../base/base.gyp:base',
427 '../device/battery/battery.gyp:device_battery_java', 427 '../device/battery/battery.gyp:device_battery_java',
428 '../media/media.gyp:media_java', 428 '../media/media.gyp:media_java',
429 '../mojo/mojo_base.gyp:mojo_system_java', 429 '../mojo/mojo_base.gyp:mojo_system_java',
430 '../mojo/public/mojo_public.gyp:mojo_bindings_java', 430 '../mojo/public/mojo_public.gyp:mojo_bindings_java',
431 '../net/net.gyp:net', 431 '../net/net.gyp:net',
432 '../ui/android/ui_android.gyp:ui_java', 432 '../ui/android/ui_android.gyp:ui_java',
433 'android_resource_type_java',
433 'common_aidl', 434 'common_aidl',
434 'content_common', 435 'content_common',
435 'content_strings_grd', 436 'content_strings_grd',
436 'content_gamepad_mapping', 437 'content_gamepad_mapping',
437 'gesture_event_type_java', 438 'gesture_event_type_java',
438 'popup_item_type_java', 439 'popup_item_type_java',
439 'result_codes_java', 440 'result_codes_java',
440 'selection_event_type_java', 441 'selection_event_type_java',
441 'speech_recognition_error_java', 442 'speech_recognition_error_java',
442 'top_controls_state_java', 443 'top_controls_state_java',
(...skipping 20 matching lines...) Expand all
463 'android_unmangled_name': 1, 464 'android_unmangled_name': 1,
464 'type': 'none', 465 'type': 'none',
465 'variables': { 466 'variables': {
466 'grd_file': '../content/public/android/java/strings/android_content_ strings.grd', 467 'grd_file': '../content/public/android/java/strings/android_content_ strings.grd',
467 }, 468 },
468 'includes': [ 469 'includes': [
469 '../build/java_strings_grd.gypi', 470 '../build/java_strings_grd.gypi',
470 ], 471 ],
471 }, 472 },
472 { 473 {
474 'target_name': 'android_resource_type_java',
475 'type': 'none',
476 'variables': {
477 'source_file': 'public/browser/android/resource_manager.h',
478 },
479 'includes': [ '../build/android/java_cpp_enum.gypi' ],
480 },
481 {
473 'target_name': 'content_gamepad_mapping', 482 'target_name': 'content_gamepad_mapping',
474 'type': 'none', 483 'type': 'none',
475 'variables': { 484 'variables': {
476 'source_file': 'browser/gamepad/gamepad_standard_mappings.h', 485 'source_file': 'browser/gamepad/gamepad_standard_mappings.h',
477 }, 486 },
478 'includes': [ '../build/android/java_cpp_enum.gypi' ], 487 'includes': [ '../build/android/java_cpp_enum.gypi' ],
479 }, 488 },
480 { 489 {
481 'target_name': 'gesture_event_type_java', 490 'target_name': 'gesture_event_type_java',
482 'type': 'none', 491 'type': 'none',
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
590 ], 599 ],
591 }, 600 },
592 ], 601 ],
593 }], 602 }],
594 ], 603 ],
595 }, 604 },
596 ], 605 ],
597 }], # OS == "android" 606 }], # OS == "android"
598 ], 607 ],
599 } 608 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698