Index: components/nacl_common.gyp |
diff --git a/components/nacl_common.gyp b/components/nacl_common.gyp |
index 00137c538f7ec07589179f7669babc27273fc23e..2ce2aec3da56cc1e176a0814ad5a345d1fbd6675 100644 |
--- a/components/nacl_common.gyp |
+++ b/components/nacl_common.gyp |
@@ -5,6 +5,22 @@ |
{ |
'targets': [ |
{ |
+ 'target_name': 'nacl_common', |
+ 'type': 'static_library', |
+ 'dependencies': [ |
+ '../base/base.gyp:base', |
+ ], |
+ 'sources': [ |
+ 'nacl/common/nacl_messages.cc', |
+ 'nacl/common/nacl_messages.h', |
+ 'nacl/common/nacl_types.cc', |
+ 'nacl/common/nacl_types.h', |
+ ], |
+ 'include_dirs': [ |
+ '..', |
+ ], |
+ }, |
+ { |
'target_name': 'nacl_switches', |
'type': 'static_library', |
'sources': [ |
@@ -15,6 +31,17 @@ |
'..', |
], |
}, |
+ { |
+ 'target_name': 'nacl_cmd_line', |
+ 'type': 'static_library', |
+ 'sources': [ |
+ 'nacl/common/nacl_cmd_line.cc', |
+ 'nacl/common/nacl_cmd_line.h', |
+ ], |
+ 'include_dirs': [ |
+ '..', |
+ ], |
+ }, |
], |
'conditions': [ |
['OS=="win" and target_arch=="ia32"', { |