| OLD | NEW |
| 1 # | 1 # |
| 2 # Copyright (C) 2009 Google Inc. All rights reserved. | 2 # Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 # | 3 # |
| 4 # Redistribution and use in source and binary forms, with or without | 4 # Redistribution and use in source and binary forms, with or without |
| 5 # modification, are permitted provided that the following conditions are | 5 # modification, are permitted provided that the following conditions are |
| 6 # met: | 6 # met: |
| 7 # | 7 # |
| 8 # * Redistributions of source code must retain the above copyright | 8 # * Redistributions of source code must retain the above copyright |
| 9 # notice, this list of conditions and the following disclaimer. | 9 # notice, this list of conditions and the following disclaimer. |
| 10 # * Redistributions in binary form must reproduce the above | 10 # * Redistributions in binary form must reproduce the above |
| (...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 55 }, # variables | 55 }, # variables |
| 56 | 56 |
| 57 'target_defaults': { | 57 'target_defaults': { |
| 58 'variables': { | 58 'variables': { |
| 59 'optimize': 'max', | 59 'optimize': 'max', |
| 60 }, | 60 }, |
| 61 }, | 61 }, |
| 62 | 62 |
| 63 'targets': [ | 63 'targets': [ |
| 64 { | 64 { |
| 65 # GN version: //third_party/WebKit/Source/core/inspector:instrumentation_s
ources | |
| 66 'target_name': 'inspector_instrumentation_sources', | |
| 67 'type': 'none', | |
| 68 'dependencies': [], | |
| 69 'actions': [ | |
| 70 { | |
| 71 'action_name': 'generateInspectorInstrumentation', | |
| 72 'inputs': [ | |
| 73 # The python script in action below. | |
| 74 'inspector/CodeGeneratorInstrumentation.py', | |
| 75 # Input file for the script. | |
| 76 'inspector/InspectorInstrumentation.idl', | |
| 77 ], | |
| 78 'outputs': [ | |
| 79 '<(blink_core_output_dir)/InspectorConsoleInstrumentationInl.h', | |
| 80 '<(blink_core_output_dir)/InspectorInstrumentationInl.h', | |
| 81 '<(blink_core_output_dir)/InspectorOverridesInl.h', | |
| 82 '<(blink_core_output_dir)/InstrumentingAgents.h', | |
| 83 '<(blink_core_output_dir)/InspectorInstrumentationImpl.cpp', | |
| 84 ], | |
| 85 'action': [ | |
| 86 'python', | |
| 87 'inspector/CodeGeneratorInstrumentation.py', | |
| 88 'inspector/InspectorInstrumentation.idl', | |
| 89 '--output_dir', '<(blink_core_output_dir)', | |
| 90 ], | |
| 91 'message': 'Generating Inspector instrumentation code from InspectorIn
strumentation.idl', | |
| 92 } | |
| 93 ] | |
| 94 }, | |
| 95 { | |
| 96 # GN version: //third_party/WebKit/Source/core:core_generated | 65 # GN version: //third_party/WebKit/Source/core:core_generated |
| 97 'target_name': 'webcore_generated', | 66 'target_name': 'webcore_generated', |
| 98 'type': 'static_library', | 67 'type': 'static_library', |
| 99 'hard_dependency': 1, | 68 'hard_dependency': 1, |
| 100 'dependencies': [ | 69 'dependencies': [ |
| 101 'webcore_prerequisites', | 70 'webcore_prerequisites', |
| 102 'core_generated.gyp:make_core_generated', | 71 'core_generated.gyp:make_core_generated', |
| 103 'inspector_instrumentation_sources', | 72 'inspector/inspector.gyp:instrumentation_sources', |
| 73 'inspector/inspector.gyp:protocol_sources', |
| 104 '../bindings/core/v8/generated.gyp:bindings_core_v8_generated', | 74 '../bindings/core/v8/generated.gyp:bindings_core_v8_generated', |
| 105 # FIXME: don't depend on bindings_modules http://crbug.com/358074 | 75 # FIXME: don't depend on bindings_modules http://crbug.com/358074 |
| 106 '../bindings/modules/generated.gyp:modules_event_generated', | 76 '../bindings/modules/generated.gyp:modules_event_generated', |
| 107 '../bindings/modules/v8/generated.gyp:bindings_modules_v8_generated', | 77 '../bindings/modules/v8/generated.gyp:bindings_modules_v8_generated', |
| 108 '../platform/platform_generated.gyp:make_platform_generated', | 78 '../platform/platform_generated.gyp:make_platform_generated', |
| 109 '../wtf/wtf.gyp:wtf', | 79 '../wtf/wtf.gyp:wtf', |
| 110 '<(DEPTH)/gin/gin.gyp:gin', | 80 '<(DEPTH)/gin/gin.gyp:gin', |
| 111 '<(DEPTH)/skia/skia.gyp:skia', | 81 '<(DEPTH)/skia/skia.gyp:skia', |
| 112 '<(DEPTH)/third_party/iccjpeg/iccjpeg.gyp:iccjpeg', | 82 '<(DEPTH)/third_party/iccjpeg/iccjpeg.gyp:iccjpeg', |
| 113 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', | 83 '<(DEPTH)/third_party/libpng/libpng.gyp:libpng', |
| (...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 151 }], | 121 }], |
| 152 ], | 122 ], |
| 153 }, | 123 }, |
| 154 { | 124 { |
| 155 # We'll soon split libwebcore in multiple smaller libraries. | 125 # We'll soon split libwebcore in multiple smaller libraries. |
| 156 # webcore_prerequisites will be the 'base' target of every sub-target. | 126 # webcore_prerequisites will be the 'base' target of every sub-target. |
| 157 # GN version: //third_party/WebKit/Source/core:prerequisites | 127 # GN version: //third_party/WebKit/Source/core:prerequisites |
| 158 'target_name': 'webcore_prerequisites', | 128 'target_name': 'webcore_prerequisites', |
| 159 'type': 'none', | 129 'type': 'none', |
| 160 'dependencies': [ | 130 'dependencies': [ |
| 161 'inspector_instrumentation_sources', | 131 'inspector/inspector.gyp:instrumentation_sources', |
| 132 'inspector/inspector.gyp:protocol_sources', |
| 162 'core_generated.gyp:make_core_generated', | 133 'core_generated.gyp:make_core_generated', |
| 163 '../bindings/core/v8/generated.gyp:bindings_core_v8_generated', | 134 '../bindings/core/v8/generated.gyp:bindings_core_v8_generated', |
| 164 # FIXME: don't depend on bindings_modules http://crbug.com/358074 | 135 # FIXME: don't depend on bindings_modules http://crbug.com/358074 |
| 165 '../bindings/modules/v8/generated.gyp:bindings_modules_v8_generated', | 136 '../bindings/modules/v8/generated.gyp:bindings_modules_v8_generated', |
| 166 '../wtf/wtf.gyp:wtf', | 137 '../wtf/wtf.gyp:wtf', |
| 167 '../config.gyp:config', | 138 '../config.gyp:config', |
| 168 '../platform/blink_platform.gyp:blink_platform', | 139 '../platform/blink_platform.gyp:blink_platform', |
| 169 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib', | 140 '<(DEPTH)/gpu/gpu.gyp:gles2_c_lib', |
| 170 '<(DEPTH)/skia/skia.gyp:skia', | 141 '<(DEPTH)/skia/skia.gyp:skia', |
| 171 '<(angle_path)/src/angle.gyp:translator', | 142 '<(angle_path)/src/angle.gyp:translator', |
| (...skipping 347 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 519 'type': 'shared_library', | 490 'type': 'shared_library', |
| 520 'hard_dependency': 1, | 491 'hard_dependency': 1, |
| 521 'dependencies': [ | 492 'dependencies': [ |
| 522 'webcore_prerequisites', | 493 'webcore_prerequisites', |
| 523 | 494 |
| 524 '../platform/blink_platform.gyp:blink_common', | 495 '../platform/blink_platform.gyp:blink_common', |
| 525 '../platform/blink_platform.gyp:blink_platform', | 496 '../platform/blink_platform.gyp:blink_platform', |
| 526 | 497 |
| 527 # webcore_generated dependency | 498 # webcore_generated dependency |
| 528 'core_generated.gyp:make_core_generated', | 499 'core_generated.gyp:make_core_generated', |
| 529 'inspector_instrumentation_sources', | 500 'inspector/inspector.gyp:instrumentation_sources', |
| 501 'inspector/inspector.gyp:protocol_sources', |
| 530 '../bindings/core/v8/generated.gyp:bindings_core_v8_generated', | 502 '../bindings/core/v8/generated.gyp:bindings_core_v8_generated', |
| 531 # FIXME: don't depend on bindings_modules http://crbug.com/358074 | 503 # FIXME: don't depend on bindings_modules http://crbug.com/358074 |
| 532 '../bindings/modules/generated.gyp:modules_event_generated', | 504 '../bindings/modules/generated.gyp:modules_event_generated', |
| 533 '../bindings/modules/v8/generated.gyp:bindings_modules_v8_generated', | 505 '../bindings/modules/v8/generated.gyp:bindings_modules_v8_generated', |
| 534 '../platform/platform_generated.gyp:make_platform_generated', | 506 '../platform/platform_generated.gyp:make_platform_generated', |
| 535 | 507 |
| 536 '../wtf/wtf.gyp:wtf', | 508 '../wtf/wtf.gyp:wtf', |
| 537 '<(DEPTH)/base/base.gyp:base', | 509 '<(DEPTH)/base/base.gyp:base', |
| 538 '<(DEPTH)/cc/cc.gyp:cc', | 510 '<(DEPTH)/cc/cc.gyp:cc', |
| 539 '<(DEPTH)/gin/gin.gyp:gin', | 511 '<(DEPTH)/gin/gin.gyp:gin', |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 661 'layout/LayoutThemeAndroid.cpp', | 633 'layout/LayoutThemeAndroid.cpp', |
| 662 'layout/LayoutThemeAndroid.h', | 634 'layout/LayoutThemeAndroid.h', |
| 663 ], | 635 ], |
| 664 }], | 636 }], |
| 665 ], | 637 ], |
| 666 }], | 638 }], |
| 667 ], | 639 ], |
| 668 }, | 640 }, |
| 669 ], # targets | 641 ], # targets |
| 670 } | 642 } |
| OLD | NEW |