OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, # Use higher warning level. | 7 'chromium_code': 1, # Use higher warning level. |
8 }, | 8 }, |
9 'target_defaults': { | 9 'target_defaults': { |
10 'defines': ['MOJO_IMPLEMENTATION'], | 10 'defines': ['MOJO_IMPLEMENTATION'], |
(...skipping 27 matching lines...) Expand all Loading... |
38 '../base/base.gyp:run_all_unittests', | 38 '../base/base.gyp:run_all_unittests', |
39 '../testing/gtest.gyp:gtest', | 39 '../testing/gtest.gyp:gtest', |
40 ], | 40 ], |
41 'include_dirs': [ | 41 'include_dirs': [ |
42 '..' | 42 '..' |
43 ], | 43 ], |
44 'sources': [ | 44 'sources': [ |
45 'public/libs/message/message_unittest.cc', | 45 'public/libs/message/message_unittest.cc', |
46 ], | 46 ], |
47 }, | 47 }, |
| 48 { |
| 49 'target_name': 'mojo_bindings_test', |
| 50 'type': 'executable', |
| 51 'include_dirs': [ |
| 52 '..' |
| 53 ], |
| 54 'sources': [ |
| 55 'public/bindings/test.cc', |
| 56 ], |
| 57 }, |
48 ], | 58 ], |
49 } | 59 } |
OLD | NEW |