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

Side by Side Diff: content/content.gyp

Issue 1137393003: Add style information to the snapshot node (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: gn support Created 5 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
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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
435 '../mojo/mojo_base.gyp:mojo_application_bindings', 435 '../mojo/mojo_base.gyp:mojo_application_bindings',
436 '../mojo/mojo_base.gyp:mojo_system_java', 436 '../mojo/mojo_base.gyp:mojo_system_java',
437 '../net/net.gyp:net', 437 '../net/net.gyp:net',
438 '../third_party/mojo/mojo_public.gyp:mojo_bindings_java', 438 '../third_party/mojo/mojo_public.gyp:mojo_bindings_java',
439 '../ui/android/ui_android.gyp:ui_java', 439 '../ui/android/ui_android.gyp:ui_java',
440 '../ui/touch_selection/ui_touch_selection.gyp:selection_event_type_j ava', 440 '../ui/touch_selection/ui_touch_selection.gyp:selection_event_type_j ava',
441 '../ui/touch_selection/ui_touch_selection.gyp:touch_handle_orientati on_java', 441 '../ui/touch_selection/ui_touch_selection.gyp:touch_handle_orientati on_java',
442 '../third_party/WebKit/public/blink_headers.gyp:blink_headers_java', 442 '../third_party/WebKit/public/blink_headers.gyp:blink_headers_java',
443 'common_aidl', 443 'common_aidl',
444 'console_message_level_java', 444 'console_message_level_java',
445 'content_ax_java_enumerations',
445 'content_common', 446 'content_common',
446 'content_strings_grd', 447 'content_strings_grd',
447 'content_gamepad_mapping', 448 'content_gamepad_mapping',
448 'gesture_event_type_java', 449 'gesture_event_type_java',
449 'invalidate_types_java', 450 'invalidate_types_java',
450 'navigation_controller_java', 451 'navigation_controller_java',
451 'popup_item_type_java', 452 'popup_item_type_java',
452 'result_codes_java', 453 'result_codes_java',
453 'readback_response_java', 454 'readback_response_java',
454 'speech_recognition_error_java', 455 'speech_recognition_error_java',
(...skipping 10 matching lines...) Expand all
465 }, 466 },
466 { 467 {
467 'target_name': 'console_message_level_java', 468 'target_name': 'console_message_level_java',
468 'type': 'none', 469 'type': 'none',
469 'variables': { 470 'variables': {
470 'source_file': 'public/common/console_message_level.h', 471 'source_file': 'public/common/console_message_level.h',
471 }, 472 },
472 'includes': [ '../build/android/java_cpp_enum.gypi' ], 473 'includes': [ '../build/android/java_cpp_enum.gypi' ],
473 }, 474 },
474 { 475 {
476 'target_name': 'content_ax_java_enumerations',
477 'type': 'none',
478 'variables': {
479 'source_file': '../ui/accessibility/ax_enums.idl',
480 },
481 'includes': [ '../build/android/java_cpp_enum.gypi' ],
482 },
483 {
475 'target_name': 'content_strings_grd', 484 'target_name': 'content_strings_grd',
476 # The android_webview/Android.mk file depends on this target directly. 485 # The android_webview/Android.mk file depends on this target directly.
477 'android_unmangled_name': 1, 486 'android_unmangled_name': 1,
478 'type': 'none', 487 'type': 'none',
479 'variables': { 488 'variables': {
480 'grd_file': '../content/public/android/java/strings/android_content_ strings.grd', 489 'grd_file': '../content/public/android/java/strings/android_content_ strings.grd',
481 }, 490 },
482 'includes': [ 491 'includes': [
483 '../build/java_strings_grd.gypi', 492 '../build/java_strings_grd.gypi',
484 ], 493 ],
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
620 ], 629 ],
621 }, 630 },
622 ], 631 ],
623 }], 632 }],
624 ], 633 ],
625 }, 634 },
626 ], 635 ],
627 }], # OS == "android" 636 }], # OS == "android"
628 ], 637 ],
629 } 638 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698