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

Unified Diff: gin/gin.gyp

Issue 59153005: Begin implementing V8 bindings for Mojo (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix skipped comment 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
Index: gin/gin.gyp
diff --git a/gin/gin.gyp b/gin/gin.gyp
index ca133dd5a42f104667e288d24061a4303715fbad..ed76f09df220683a7ff5dfb56b664d03421bae9a 100644
--- a/gin/gin.gyp
+++ b/gin/gin.gyp
@@ -20,10 +20,14 @@
'../v8/tools/gyp/v8.gyp:v8',
],
'sources': [
+ 'arguments.cc',
+ 'arguments.h',
'array_buffer.cc',
'array_buffer.h',
'converter.cc',
'converter.h',
+ 'dictionary.cc',
+ 'dictionary.h',
'initialize.cc',
'initialize.h',
'per_isolate_data.cc',
@@ -35,18 +39,35 @@
],
},
{
- 'target_name': 'gin_unittests',
- 'type': 'executable',
+ 'target_name': 'gin_test',
+ 'type': 'static_library',
'dependencies': [
'../base/base.gyp:base',
- '../base/base.gyp:run_all_unittests',
+ '../testing/gtest.gyp:gtest',
+ 'gin',
+ ],
+ 'export_dependent_settings': [
+ '../base/base.gyp:base',
'../testing/gtest.gyp:gtest',
'gin',
],
'sources': [
+ 'test/gtest.cc',
+ 'test/gtest.h',
'test/v8_test.cc',
- 'test/run_all_unittests.cc',
+ 'test/v8_test.h',
+ ],
+ },
+ {
+ 'target_name': 'gin_unittests',
+ 'type': 'executable',
+ 'dependencies': [
+ '../base/base.gyp:run_all_unittests',
+ 'gin_test',
+ ],
+ 'sources': [
'converter_unittest.cc',
+ 'test/run_all_unittests.cc',
'runner_unittest.cc',
],
},
« gin/arguments.cc ('K') | « gin/dictionary.cc ('k') | gin/per_isolate_data.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698