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

Side by Side Diff: Source/core/core.gyp

Issue 351423002: Moved files under Source/bindings/v8 to Source/bindings/core/v8. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/core.gni ('k') | Source/core/core.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 # 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 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
193 'output_file_path': '<(blink_core_output_dir)/InjectedScriptSource.h', 193 'output_file_path': '<(blink_core_output_dir)/InjectedScriptSource.h',
194 'character_array_name': 'InjectedScriptSource_js', 194 'character_array_name': 'InjectedScriptSource_js',
195 }, 195 },
196 'includes': [ '../build/ConvertFileToHeaderWithCharacterArray.gypi' ], 196 'includes': [ '../build/ConvertFileToHeaderWithCharacterArray.gypi' ],
197 }, 197 },
198 { 198 {
199 # GN version: //third_party/WebKit/Source/core/inspector:debugger_script_s ource 199 # GN version: //third_party/WebKit/Source/core/inspector:debugger_script_s ource
200 'target_name': 'debugger_script_source', 200 'target_name': 'debugger_script_source',
201 'type': 'none', 201 'type': 'none',
202 'variables': { 202 'variables': {
203 'input_file_path': '<(bindings_v8_dir)/DebuggerScript.js', 203 'input_file_path': '<(bindings_core_v8_dir)/DebuggerScript.js',
204 'output_file_path': '<(blink_core_output_dir)/DebuggerScriptSource.h', 204 'output_file_path': '<(blink_core_output_dir)/DebuggerScriptSource.h',
205 'character_array_name': 'DebuggerScriptSource_js', 205 'character_array_name': 'DebuggerScriptSource_js',
206 }, 206 },
207 'includes': [ '../build/ConvertFileToHeaderWithCharacterArray.gypi' ], 207 'includes': [ '../build/ConvertFileToHeaderWithCharacterArray.gypi' ],
208 }, 208 },
209 { 209 {
210 # GN version: //third_party/WebKit/Source/core:core_generated 210 # GN version: //third_party/WebKit/Source/core:core_generated
211 'target_name': 'webcore_generated', 211 'target_name': 'webcore_generated',
212 'type': 'static_library', 212 'type': 'static_library',
213 'hard_dependency': 1, 213 'hard_dependency': 1,
(...skipping 23 matching lines...) Expand all
237 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms', 237 '<(DEPTH)/third_party/qcms/qcms.gyp:qcms',
238 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite', 238 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
239 '<(DEPTH)/url/url.gyp:url_lib', 239 '<(DEPTH)/url/url.gyp:url_lib',
240 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 240 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
241 ], 241 ],
242 'include_dirs': [ 242 'include_dirs': [
243 '<@(webcore_include_dirs)', 243 '<@(webcore_include_dirs)',
244 ], 244 ],
245 'sources': [ 245 'sources': [
246 # FIXME: should be bindings_core_v8_files http://crbug.com/358074 246 # FIXME: should be bindings_core_v8_files http://crbug.com/358074
247 '<@(bindings_v8_files)', 247 '<@(bindings_core_v8_files)',
248 # These files include all the .cpp files generated from the .idl files 248 # These files include all the .cpp files generated from the .idl files
249 # in webcore_files. 249 # in webcore_files.
250 '<@(bindings_core_v8_generated_aggregate_files)', 250 '<@(bindings_core_v8_generated_aggregate_files)',
251 251
252 # Additional .cpp files for HashTools.h 252 # Additional .cpp files for HashTools.h
253 '<(blink_core_output_dir)/CSSPropertyNames.cpp', 253 '<(blink_core_output_dir)/CSSPropertyNames.cpp',
254 '<(blink_core_output_dir)/CSSValueKeywords.cpp', 254 '<(blink_core_output_dir)/CSSValueKeywords.cpp',
255 255
256 # Additional .cpp files from make_core_generated actions. 256 # Additional .cpp files from make_core_generated actions.
257 '<(blink_core_output_dir)/Event.cpp', 257 '<(blink_core_output_dir)/Event.cpp',
(...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after
789 'type': 'static_library', 789 'type': 'static_library',
790 'dependencies': [ 790 'dependencies': [
791 '../config.gyp:config', 791 '../config.gyp:config',
792 'webcore', 792 'webcore',
793 ], 793 ],
794 'defines': [ 794 'defines': [
795 'BLINK_IMPLEMENTATION=1', 795 'BLINK_IMPLEMENTATION=1',
796 'INSIDE_BLINK', 796 'INSIDE_BLINK',
797 ], 797 ],
798 'include_dirs': [ 798 'include_dirs': [
799 '<(bindings_v8_dir)', # FIXME: Remove once http://crbug.com/236119 is f ixed. 799 '<(bindings_core_v8_dir)', # FIXME: Remove once http://crbug.com/236119 is fixed.
800 'testing', 800 'testing',
801 'testing/v8', 801 'testing/v8',
802 ], 802 ],
803 'sources': [ 803 'sources': [
804 '<@(webcore_testing_files)', 804 '<@(webcore_testing_files)',
805 '<(bindings_core_v8_output_dir)/V8GCObservation.cpp', 805 '<(bindings_core_v8_output_dir)/V8GCObservation.cpp',
806 '<(bindings_core_v8_output_dir)/V8GCObservation.h', 806 '<(bindings_core_v8_output_dir)/V8GCObservation.h',
807 '<(bindings_core_v8_output_dir)/V8MallocStatistics.cpp', 807 '<(bindings_core_v8_output_dir)/V8MallocStatistics.cpp',
808 '<(bindings_core_v8_output_dir)/V8MallocStatistics.h', 808 '<(bindings_core_v8_output_dir)/V8MallocStatistics.h',
809 '<(bindings_core_v8_output_dir)/V8TypeConversions.cpp', 809 '<(bindings_core_v8_output_dir)/V8TypeConversions.cpp',
(...skipping 12 matching lines...) Expand all
822 '<(bindings_core_v8_output_dir)/V8LayerRect.h', 822 '<(bindings_core_v8_output_dir)/V8LayerRect.h',
823 '<(bindings_core_v8_output_dir)/V8LayerRectList.cpp', 823 '<(bindings_core_v8_output_dir)/V8LayerRectList.cpp',
824 '<(bindings_core_v8_output_dir)/V8LayerRectList.h', 824 '<(bindings_core_v8_output_dir)/V8LayerRectList.h',
825 ], 825 ],
826 'sources/': [ 826 'sources/': [
827 ['exclude', 'testing/js'], 827 ['exclude', 'testing/js'],
828 ], 828 ],
829 }, 829 },
830 ], # targets 830 ], # targets
831 } 831 }
OLDNEW
« no previous file with comments | « Source/core/core.gni ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698