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

Side by Side Diff: gin/gin.gyp

Issue 79203004: [Gin] Add a mechanism for wrapping C++ object (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Disallow copy and assign Created 7 years 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 | « gin/dictionary.cc ('k') | gin/wrappable.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 {
11 'target_name': 'gin', 11 'target_name': 'gin',
12 'type': 'static_library', 12 'type': 'static_library',
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../v8/tools/gyp/v8.gyp:v8', 15 '../v8/tools/gyp/v8.gyp:v8',
16 ], 16 ],
17 'export_dependent_settings': [ 17 'export_dependent_settings': [
18 '../base/base.gyp:base', 18 '../base/base.gyp:base',
19 '../v8/tools/gyp/v8.gyp:v8', 19 '../v8/tools/gyp/v8.gyp:v8',
20 ], 20 ],
21 'sources': [ 21 'sources': [
22 'modules/console.cc',
23 'modules/console.h',
24 'modules/file_module_provider.cc',
25 'modules/file_module_provider.h',
26 'modules/module_registry.cc',
27 'modules/module_registry.h',
28 'modules/module_runner_delegate.cc',
29 'modules/module_runner_delegate.h',
30 'arguments.cc', 22 'arguments.cc',
31 'arguments.h', 23 'arguments.h',
32 'array_buffer.cc', 24 'array_buffer.cc',
33 'array_buffer.h', 25 'array_buffer.h',
34 'context_holder.cc', 26 'context_holder.cc',
35 'context_holder.h', 27 'context_holder.h',
36 'converter.cc', 28 'converter.cc',
37 'converter.h', 29 'converter.h',
38 'dictionary.cc', 30 'dictionary.cc',
39 'dictionary.h', 31 'dictionary.h',
40 'gin.cc', 32 'gin.cc',
41 'gin.h', 33 'gin.h',
34 'modules/console.cc',
35 'modules/console.h',
36 'modules/file_module_provider.cc',
37 'modules/file_module_provider.h',
38 'modules/module_registry.cc',
39 'modules/module_registry.h',
40 'modules/module_runner_delegate.cc',
41 'modules/module_runner_delegate.h',
42 'per_context_data.cc', 42 'per_context_data.cc',
43 'per_context_data.h', 43 'per_context_data.h',
44 'per_isolate_data.cc', 44 'per_isolate_data.cc',
45 'per_isolate_data.h', 45 'per_isolate_data.h',
46 'public/gin_embedders.h',
47 'public/wrapper_info.h',
46 'runner.cc', 48 'runner.cc',
47 'runner.h', 49 'runner.h',
48 'try_catch.cc', 50 'try_catch.cc',
49 'try_catch.h', 51 'try_catch.h',
52 'wrappable.cc',
53 'wrappable.h',
50 'wrapper_info.cc', 54 'wrapper_info.cc',
51 'public/gin_embedders.h',
52 'public/wrapper_info.h',
53 ], 55 ],
54 }, 56 },
55 { 57 {
56 'target_name': 'gin_shell', 58 'target_name': 'gin_shell',
57 'type': 'executable', 59 'type': 'executable',
58 'dependencies': [ 60 'dependencies': [
59 '../base/base.gyp:base_i18n', 61 '../base/base.gyp:base_i18n',
60 'gin', 62 'gin',
61 ], 63 ],
62 'sources': [ 64 'sources': [
(...skipping 30 matching lines...) Expand all
93 'type': 'executable', 95 'type': 'executable',
94 'dependencies': [ 96 'dependencies': [
95 '../base/base.gyp:run_all_unittests', 97 '../base/base.gyp:run_all_unittests',
96 'gin_test', 98 'gin_test',
97 ], 99 ],
98 'sources': [ 100 'sources': [
99 'converter_unittest.cc', 101 'converter_unittest.cc',
100 'test/run_all_unittests.cc', 102 'test/run_all_unittests.cc',
101 'test/run_js_tests.cc', 103 'test/run_js_tests.cc',
102 'runner_unittest.cc', 104 'runner_unittest.cc',
105 'wrappable_unittest.cc',
103 ], 106 ],
104 }, 107 },
105 ], 108 ],
106 } 109 }
OLDNEW
« no previous file with comments | « gin/dictionary.cc ('k') | gin/wrappable.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698