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

Side by Side Diff: gin/gin.gyp

Issue 179803007: Refactors parts of gin: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix gin_shell Created 6 years, 10 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 | « gin/converter.h ('k') | gin/modules/module_registry.cc » ('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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 'per_context_data.cc', 51 'per_context_data.cc',
52 'per_context_data.h', 52 'per_context_data.h',
53 'per_isolate_data.cc', 53 'per_isolate_data.cc',
54 'per_isolate_data.h', 54 'per_isolate_data.h',
55 'public/context_holder.h', 55 'public/context_holder.h',
56 'public/gin_embedders.h', 56 'public/gin_embedders.h',
57 'public/isolate_holder.h', 57 'public/isolate_holder.h',
58 'public/wrapper_info.h', 58 'public/wrapper_info.h',
59 'runner.cc', 59 'runner.cc',
60 'runner.h', 60 'runner.h',
61 'shell_runner.cc',
62 'shell_runner.h',
61 'try_catch.cc', 63 'try_catch.cc',
62 'try_catch.h', 64 'try_catch.h',
63 'wrappable.cc', 65 'wrappable.cc',
64 'wrappable.h', 66 'wrappable.h',
65 'wrapper_info.cc', 67 'wrapper_info.cc',
66 ], 68 ],
67 }, 69 },
68 { 70 {
69 'target_name': 'gin_shell', 71 'target_name': 'gin_shell',
70 'type': 'executable', 72 'type': 'executable',
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 'target_name': 'gin_unittests', 110 'target_name': 'gin_unittests',
109 'type': 'executable', 111 'type': 'executable',
110 'dependencies': [ 112 'dependencies': [
111 '../base/base.gyp:run_all_unittests', 113 '../base/base.gyp:run_all_unittests',
112 '../v8/tools/gyp/v8.gyp:v8', 114 '../v8/tools/gyp/v8.gyp:v8',
113 'gin_test', 115 'gin_test',
114 ], 116 ],
115 'sources': [ 117 'sources': [
116 'converter_unittest.cc', 118 'converter_unittest.cc',
117 'modules/timer_unittest.cc', 119 'modules/timer_unittest.cc',
120 'shell_runner_unittest.cc',
118 'test/run_all_unittests.cc', 121 'test/run_all_unittests.cc',
119 'test/run_js_tests.cc', 122 'test/run_js_tests.cc',
120 'runner_unittest.cc',
121 'wrappable_unittest.cc', 123 'wrappable_unittest.cc',
122 ], 124 ],
123 }, 125 },
124 ], 126 ],
125 } 127 }
OLDNEW
« no previous file with comments | « gin/converter.h ('k') | gin/modules/module_registry.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698