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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « gin/converter_unittest.cc ('k') | gin/initialize.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gin/gin.gyp
diff --git a/gin/gin.gyp b/gin/gin.gyp
new file mode 100644
index 0000000000000000000000000000000000000000..ca133dd5a42f104667e288d24061a4303715fbad
--- /dev/null
+++ b/gin/gin.gyp
@@ -0,0 +1,54 @@
+# Copyright 2013 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+{
+ 'variables': {
+ 'chromium_code': 1,
+ },
+ 'targets': [
+ {
+ 'target_name': 'gin',
+ 'type': 'static_library',
+ 'include_dirs': [
+ '..'
+ ],
+ 'dependencies': [
+ '../v8/tools/gyp/v8.gyp:v8',
+ ],
+ 'export_dependent_settings': [
+ '../v8/tools/gyp/v8.gyp:v8',
+ ],
+ 'sources': [
+ 'array_buffer.cc',
+ 'array_buffer.h',
+ 'converter.cc',
+ 'converter.h',
+ 'initialize.cc',
+ 'initialize.h',
+ 'per_isolate_data.cc',
+ 'per_isolate_data.h',
+ 'runner.cc',
+ 'runner.h',
+ 'wrapper_info.cc',
+ 'wrapper_info.h',
+ ],
+ },
+ {
+ 'target_name': 'gin_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ '../base/base.gyp:base',
+ '../base/base.gyp:run_all_unittests',
+ '../testing/gtest.gyp:gtest',
+ 'gin',
+ ],
+ 'sources': [
+ 'test/v8_test.cc',
+ 'test/run_all_unittests.cc',
+ 'converter_unittest.cc',
+ 'runner_unittest.cc',
+ ],
+ },
+ ],
+}
« 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