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

Side by Side Diff: gin/gin.gyp

Issue 67763002: Add gin, a lightweight bindings system for V8 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address Aaron's comments Created 7 years, 1 month 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_unittest.cc ('k') | gin/initialize.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 {
6 'variables': {
7 'chromium_code': 1,
8 },
9 'targets': [
10 {
11 'target_name': 'gin',
12 'type': 'static_library',
13 'include_dirs': [
14 '..'
15 ],
16 'dependencies': [
17 '../v8/tools/gyp/v8.gyp:v8',
18 ],
19 'export_dependent_settings': [
20 '../v8/tools/gyp/v8.gyp:v8',
21 ],
22 'sources': [
23 'array_buffer.cc',
24 'array_buffer.h',
25 'converter.cc',
26 'converter.h',
27 'initialize.cc',
28 'initialize.h',
29 'per_isolate_data.cc',
30 'per_isolate_data.h',
31 'runner.cc',
32 'runner.h',
33 'wrapper_info.cc',
34 'wrapper_info.h',
35 ],
36 },
37 {
38 'target_name': 'gin_unittests',
39 'type': 'executable',
40 'dependencies': [
41 '../base/base.gyp:base',
42 '../base/base.gyp:run_all_unittests',
43 '../testing/gtest.gyp:gtest',
44 'gin',
45 ],
46 'sources': [
47 'test/v8_test.cc',
48 'test/run_all_unittests.cc',
49 'converter_unittest.cc',
50 'runner_unittest.cc',
51 ],
52 },
53 ],
54 }
OLDNEW
« no previous file with comments | « gin/converter_unittest.cc ('k') | gin/initialize.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698