Index: dart.gyp |
=================================================================== |
--- dart.gyp (revision 16976) |
+++ dart.gyp (working copy) |
@@ -122,12 +122,26 @@ |
'samples/android_sample/android_sample.gyp:android_sample', |
], |
}, |
vsm
2013/01/14 21:31:40
Note, if you add an extra {} clause, it's the else
gram
2013/01/16 01:49:16
I saw that but I find it more readable expanded ou
|
- ], |
- ['OS!="android"', { |
+ ], |
+ ['OS=="win"', { |
'dependencies': [ |
'samples/sample_extension/sample_extension.gyp:sample_extension', |
], |
}, |
+ ], |
+ ['OS=="mac"', { |
vsm
2013/01/14 21:31:40
I see "and", but not "or" in the chrome gyp files.
gram
2013/01/16 01:49:16
I used or elsewhere and it seemed to work so I'll
|
+ 'dependencies': [ |
+ 'samples/sample_extension/sample_extension.gyp:sample_extension', |
+ 'samples/mobile_emulator_sample/mobile_emulator_sample.gyp:mobile_emulator_sample', |
+ ], |
+ }, |
+ ], |
+ ['OS=="linux"', { |
+ 'dependencies': [ |
+ 'samples/sample_extension/sample_extension.gyp:sample_extension', |
+ 'samples/mobile_emulator_sample/mobile_emulator_sample.gyp:mobile_emulator_sample', |
+ ], |
+ }, |
] |
], |
}, |