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

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

Issue 483163003: Introduce ES6 iterator for DOM objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 4 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 # 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 738 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 'INSIDE_BLINK', 749 'INSIDE_BLINK',
750 ], 750 ],
751 'include_dirs': [ 751 'include_dirs': [
752 '<(bindings_core_v8_dir)', # FIXME: Remove once http://crbug.com/236119 is fixed. 752 '<(bindings_core_v8_dir)', # FIXME: Remove once http://crbug.com/236119 is fixed.
753 'testing', 753 'testing',
754 'testing/v8', 754 'testing/v8',
755 ], 755 ],
756 'sources': [ 756 'sources': [
757 # Note: file list duplicated in GN build. 757 # Note: file list duplicated in GN build.
758 '<@(webcore_testing_files)', 758 '<@(webcore_testing_files)',
759 '<@(bindings_core_v8_custom_testing_files)',
759 '<(bindings_core_v8_output_dir)/V8GarbageCollectedScriptWrappable.cpp', 760 '<(bindings_core_v8_output_dir)/V8GarbageCollectedScriptWrappable.cpp',
760 '<(bindings_core_v8_output_dir)/V8GarbageCollectedScriptWrappable.h', 761 '<(bindings_core_v8_output_dir)/V8GarbageCollectedScriptWrappable.h',
761 '<(bindings_core_v8_output_dir)/V8GCObservation.cpp', 762 '<(bindings_core_v8_output_dir)/V8GCObservation.cpp',
762 '<(bindings_core_v8_output_dir)/V8GCObservation.h', 763 '<(bindings_core_v8_output_dir)/V8GCObservation.h',
763 '<(bindings_core_v8_output_dir)/V8PrivateScriptTest.cpp', 764 '<(bindings_core_v8_output_dir)/V8PrivateScriptTest.cpp',
764 '<(bindings_core_v8_output_dir)/V8PrivateScriptTest.h', 765 '<(bindings_core_v8_output_dir)/V8PrivateScriptTest.h',
765 '<(bindings_core_v8_output_dir)/V8TypeConversions.cpp', 766 '<(bindings_core_v8_output_dir)/V8TypeConversions.cpp',
766 '<(bindings_core_v8_output_dir)/V8TypeConversions.h', 767 '<(bindings_core_v8_output_dir)/V8TypeConversions.h',
767 '<(bindings_core_v8_output_dir)/V8Internals.cpp', 768 '<(bindings_core_v8_output_dir)/V8Internals.cpp',
768 '<(bindings_core_v8_output_dir)/V8Internals.h', 769 '<(bindings_core_v8_output_dir)/V8Internals.h',
(...skipping 11 matching lines...) Expand all
780 '<(bindings_core_v8_output_dir)/V8LayerRectList.h', 781 '<(bindings_core_v8_output_dir)/V8LayerRectList.h',
781 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.cpp', 782 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.cpp',
782 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h', 783 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h',
783 ], 784 ],
784 'sources/': [ 785 'sources/': [
785 ['exclude', 'testing/js'], 786 ['exclude', 'testing/js'],
786 ], 787 ],
787 }, 788 },
788 ], # targets 789 ], # targets
789 } 790 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698