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

Side by Side Diff: gin/gin.gyp

Issue 194603003: gin: Add the concept of named and indexed interceptors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 6 years, 9 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 | « no previous file | gin/interceptor.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 17 matching lines...) Expand all
28 'array_buffer.h', 28 'array_buffer.h',
29 'context_holder.cc', 29 'context_holder.cc',
30 'converter.cc', 30 'converter.cc',
31 'converter.h', 31 'converter.h',
32 'dictionary.cc', 32 'dictionary.cc',
33 'dictionary.h', 33 'dictionary.h',
34 'function_template.cc', 34 'function_template.cc',
35 'function_template.h', 35 'function_template.h',
36 'gin_export.h', 36 'gin_export.h',
37 'handle.h', 37 'handle.h',
38 'interceptor.cc',
39 'interceptor.h',
38 'isolate_holder.cc', 40 'isolate_holder.cc',
39 'modules/console.cc', 41 'modules/console.cc',
40 'modules/console.h', 42 'modules/console.h',
41 'modules/file_module_provider.cc', 43 'modules/file_module_provider.cc',
42 'modules/file_module_provider.h', 44 'modules/file_module_provider.h',
43 'modules/module_registry.cc', 45 'modules/module_registry.cc',
44 'modules/module_registry.h', 46 'modules/module_registry.h',
45 'modules/module_registry_observer.h', 47 'modules/module_registry_observer.h',
46 'modules/module_runner_delegate.cc', 48 'modules/module_runner_delegate.cc',
47 'modules/module_runner_delegate.h', 49 'modules/module_runner_delegate.h',
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 { 112 {
111 'target_name': 'gin_unittests', 113 'target_name': 'gin_unittests',
112 'type': 'executable', 114 'type': 'executable',
113 'dependencies': [ 115 'dependencies': [
114 '../base/base.gyp:run_all_unittests', 116 '../base/base.gyp:run_all_unittests',
115 '../v8/tools/gyp/v8.gyp:v8', 117 '../v8/tools/gyp/v8.gyp:v8',
116 'gin_test', 118 'gin_test',
117 ], 119 ],
118 'sources': [ 120 'sources': [
119 'converter_unittest.cc', 121 'converter_unittest.cc',
122 'interceptor_unittest.cc',
120 'modules/module_registry_unittest.cc', 123 'modules/module_registry_unittest.cc',
121 'modules/timer_unittest.cc', 124 'modules/timer_unittest.cc',
122 'per_context_data_unittest.cc', 125 'per_context_data_unittest.cc',
123 'shell_runner_unittest.cc', 126 'shell_runner_unittest.cc',
124 'test/run_all_unittests.cc', 127 'test/run_all_unittests.cc',
125 'test/run_js_tests.cc', 128 'test/run_js_tests.cc',
126 'wrappable_unittest.cc', 129 'wrappable_unittest.cc',
127 ], 130 ],
128 }, 131 },
129 ], 132 ],
130 } 133 }
OLDNEW
« no previous file with comments | « no previous file | gin/interceptor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698