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

Side by Side Diff: gin/gin.gyp

Issue 225413004: [gin] Add a v8::Platform implementation to allow for v8 posting tasks (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 6 years, 8 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 # 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': '<(component)', 12 'type': '<(component)',
13 'dependencies': [ 13 'dependencies': [
14 '../base/base.gyp:base', 14 '../base/base.gyp:base',
15 '../base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic _annotations',
15 '../v8/tools/gyp/v8.gyp:v8', 16 '../v8/tools/gyp/v8.gyp:v8',
17
16 ], 18 ],
17 'export_dependent_settings': [ 19 'export_dependent_settings': [
18 '../base/base.gyp:base', 20 '../base/base.gyp:base',
19 '../v8/tools/gyp/v8.gyp:v8', 21 '../v8/tools/gyp/v8.gyp:v8',
20 ], 22 ],
21 'defines': [ 23 'defines': [
22 'GIN_IMPLEMENTATION', 24 'GIN_IMPLEMENTATION',
23 ], 25 ],
24 'sources': [ 26 'sources': [
25 'arguments.cc', 27 'arguments.cc',
(...skipping 25 matching lines...) Expand all
51 'modules/timer.h', 53 'modules/timer.h',
52 'object_template_builder.cc', 54 'object_template_builder.cc',
53 'object_template_builder.h', 55 'object_template_builder.h',
54 'per_context_data.cc', 56 'per_context_data.cc',
55 'per_context_data.h', 57 'per_context_data.h',
56 'per_isolate_data.cc', 58 'per_isolate_data.cc',
57 'per_isolate_data.h', 59 'per_isolate_data.h',
58 'public/context_holder.h', 60 'public/context_holder.h',
59 'public/gin_embedders.h', 61 'public/gin_embedders.h',
60 'public/isolate_holder.h', 62 'public/isolate_holder.h',
63 'public/v8_platform.h',
61 'public/wrapper_info.h', 64 'public/wrapper_info.h',
62 'runner.cc', 65 'runner.cc',
63 'runner.h', 66 'runner.h',
64 'shell_runner.cc', 67 'shell_runner.cc',
65 'shell_runner.h', 68 'shell_runner.h',
66 'try_catch.cc', 69 'try_catch.cc',
67 'try_catch.h', 70 'try_catch.h',
71 'v8_platform.cc',
68 'wrappable.cc', 72 'wrappable.cc',
69 'wrappable.h', 73 'wrappable.h',
70 'wrapper_info.cc', 74 'wrapper_info.cc',
71 ], 75 ],
72 }, 76 },
73 { 77 {
74 'target_name': 'gin_shell', 78 'target_name': 'gin_shell',
75 'type': 'executable', 79 'type': 'executable',
76 'dependencies': [ 80 'dependencies': [
77 '../base/base.gyp:base', 81 '../base/base.gyp:base',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
126 'modules/timer_unittest.cc', 130 'modules/timer_unittest.cc',
127 'per_context_data_unittest.cc', 131 'per_context_data_unittest.cc',
128 'shell_runner_unittest.cc', 132 'shell_runner_unittest.cc',
129 'test/run_all_unittests.cc', 133 'test/run_all_unittests.cc',
130 'test/run_js_tests.cc', 134 'test/run_js_tests.cc',
131 'wrappable_unittest.cc', 135 'wrappable_unittest.cc',
132 ], 136 ],
133 }, 137 },
134 ], 138 ],
135 } 139 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | gin/isolate_holder.cc » ('j') | gin/public/v8_platform.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698