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

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

Issue 331373002: Split bindings/v8/custom into core and modules. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 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 | Annotate | Revision Log
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 27 matching lines...) Expand all
38 ], 38 ],
39 39
40 'variables': { 40 'variables': {
41 'enable_wexit_time_destructors': 1, 41 'enable_wexit_time_destructors': 1,
42 42
43 'webcore_include_dirs': [ 43 'webcore_include_dirs': [
44 '..', # WebKit/Source 44 '..', # WebKit/Source
45 # FIXME: Remove the following two lines once core scripts generate qualifi ed 45 # FIXME: Remove the following two lines once core scripts generate qualifi ed
46 # includes correctly: http://crbug.com/380054 46 # includes correctly: http://crbug.com/380054
47 '<(bindings_core_v8_output_dir)', 47 '<(bindings_core_v8_output_dir)',
48 '<(bindings_modules_v8_output_dir)', 48 '<(bindings_modules_v8_output_dir)', # e.g. EventTargetCustom requires.
Nils Barth (inactive) 2014/06/24 03:14:02 You mean EventHeaders.h (gen/blink/core), not V8Ev
tasak 2014/06/24 10:55:45 I mean, EventTargetCustom.cpp's toV8 depends on mo
Nils Barth (inactive) 2014/06/25 01:37:40 *V8*EventTargetCustom.cpp. That's a good point, an
tasak 2014/06/25 12:33:34 Thank you. I see. I probably understand what are i
49 '<(SHARED_INTERMEDIATE_DIR)/blink', # gen/blink 49 '<(SHARED_INTERMEDIATE_DIR)/blink', # gen/blink
50 ], 50 ],
51 51
52 'conditions': [ 52 'conditions': [
53 ['OS=="android" and use_openmax_dl_fft!=0', { 53 ['OS=="android" and use_openmax_dl_fft!=0', {
54 'webcore_include_dirs': [ 54 'webcore_include_dirs': [
55 '<(DEPTH)/third_party/openmax_dl' 55 '<(DEPTH)/third_party/openmax_dl'
56 ] 56 ]
57 }], 57 }],
58 ], 58 ],
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after
830 '<(bindings_core_v8_output_dir)/V8LayerRect.h', 830 '<(bindings_core_v8_output_dir)/V8LayerRect.h',
831 '<(bindings_core_v8_output_dir)/V8LayerRectList.cpp', 831 '<(bindings_core_v8_output_dir)/V8LayerRectList.cpp',
832 '<(bindings_core_v8_output_dir)/V8LayerRectList.h', 832 '<(bindings_core_v8_output_dir)/V8LayerRectList.h',
833 ], 833 ],
834 'sources/': [ 834 'sources/': [
835 ['exclude', 'testing/js'], 835 ['exclude', 'testing/js'],
836 ], 836 ],
837 }, 837 },
838 ], # targets 838 ], # targets
839 } 839 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698