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

Side by Side Diff: gin/gin.gyp

Issue 214183003: Change mojo JS bindings to expose a handle object, which is Closed when garbage (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rm.extra.gc 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 {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 '../v8/tools/gyp/v8.gyp:v8', 96 '../v8/tools/gyp/v8.gyp:v8',
97 'gin', 97 'gin',
98 ], 98 ],
99 'export_dependent_settings': [ 99 'export_dependent_settings': [
100 '../testing/gtest.gyp:gtest', 100 '../testing/gtest.gyp:gtest',
101 'gin', 101 'gin',
102 ], 102 ],
103 'sources': [ 103 'sources': [
104 'test/file_runner.cc', 104 'test/file_runner.cc',
105 'test/file_runner.h', 105 'test/file_runner.h',
106 'test/gc.cc',
107 'test/gc.h',
106 'test/gtest.cc', 108 'test/gtest.cc',
107 'test/gtest.h', 109 'test/gtest.h',
108 'test/v8_test.cc', 110 'test/v8_test.cc',
109 'test/v8_test.h', 111 'test/v8_test.h',
110 ], 112 ],
111 }, 113 },
112 { 114 {
113 'target_name': 'gin_unittests', 115 'target_name': 'gin_unittests',
114 'type': 'executable', 116 'type': 'executable',
115 'dependencies': [ 117 'dependencies': [
116 '../base/base.gyp:run_all_unittests', 118 '../base/base.gyp:run_all_unittests',
117 '../v8/tools/gyp/v8.gyp:v8', 119 '../v8/tools/gyp/v8.gyp:v8',
118 'gin_test', 120 'gin_test',
119 ], 121 ],
120 'sources': [ 122 'sources': [
121 'converter_unittest.cc', 123 'converter_unittest.cc',
122 'interceptor_unittest.cc', 124 'interceptor_unittest.cc',
123 'modules/module_registry_unittest.cc', 125 'modules/module_registry_unittest.cc',
124 'modules/timer_unittest.cc', 126 'modules/timer_unittest.cc',
125 'per_context_data_unittest.cc', 127 'per_context_data_unittest.cc',
126 'shell_runner_unittest.cc', 128 'shell_runner_unittest.cc',
127 'test/run_all_unittests.cc', 129 'test/run_all_unittests.cc',
128 'test/run_js_tests.cc', 130 'test/run_js_tests.cc',
129 'wrappable_unittest.cc', 131 'wrappable_unittest.cc',
130 ], 132 ],
131 }, 133 },
132 ], 134 ],
133 } 135 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698