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

Side by Side Diff: gin/gin.gyp

Issue 120043008: Add a simple one shot and repeating timer API for Mojo.js. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix win build 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/function_template.h.pump ('k') | gin/modules/console.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 26 matching lines...) Expand all
37 'handle.h', 37 'handle.h',
38 'isolate_holder.cc', 38 'isolate_holder.cc',
39 'modules/console.cc', 39 'modules/console.cc',
40 'modules/console.h', 40 'modules/console.h',
41 'modules/file_module_provider.cc', 41 'modules/file_module_provider.cc',
42 'modules/file_module_provider.h', 42 'modules/file_module_provider.h',
43 'modules/module_registry.cc', 43 'modules/module_registry.cc',
44 'modules/module_registry.h', 44 'modules/module_registry.h',
45 'modules/module_runner_delegate.cc', 45 'modules/module_runner_delegate.cc',
46 'modules/module_runner_delegate.h', 46 'modules/module_runner_delegate.h',
47 'modules/timer.cc',
48 'modules/timer.h',
47 'object_template_builder.cc', 49 'object_template_builder.cc',
48 'object_template_builder.h', 50 'object_template_builder.h',
49 'per_context_data.cc', 51 'per_context_data.cc',
50 'per_context_data.h', 52 'per_context_data.h',
51 'per_isolate_data.cc', 53 'per_isolate_data.cc',
52 'per_isolate_data.h', 54 'per_isolate_data.h',
53 'public/context_holder.h', 55 'public/context_holder.h',
54 'public/gin_embedders.h', 56 'public/gin_embedders.h',
55 'public/isolate_holder.h', 57 'public/isolate_holder.h',
56 'public/wrapper_info.h', 58 'public/wrapper_info.h',
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after
105 { 107 {
106 'target_name': 'gin_unittests', 108 'target_name': 'gin_unittests',
107 'type': 'executable', 109 'type': 'executable',
108 'dependencies': [ 110 'dependencies': [
109 '../base/base.gyp:run_all_unittests', 111 '../base/base.gyp:run_all_unittests',
110 '../v8/tools/gyp/v8.gyp:v8', 112 '../v8/tools/gyp/v8.gyp:v8',
111 'gin_test', 113 'gin_test',
112 ], 114 ],
113 'sources': [ 115 'sources': [
114 'converter_unittest.cc', 116 'converter_unittest.cc',
117 'modules/timer_unittest.cc',
115 'test/run_all_unittests.cc', 118 'test/run_all_unittests.cc',
116 'test/run_js_tests.cc', 119 'test/run_js_tests.cc',
117 'runner_unittest.cc', 120 'runner_unittest.cc',
118 'wrappable_unittest.cc', 121 'wrappable_unittest.cc',
119 ], 122 ],
120 }, 123 },
121 ], 124 ],
122 } 125 }
OLDNEW
« no previous file with comments | « gin/function_template.h.pump ('k') | gin/modules/console.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698