| 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, | 7 'chromium_code': 1, |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'defines': ['MOJO_IMPLEMENTATION'], | 10 'defines': ['MOJO_IMPLEMENTATION'], |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 'system/message_pipe_dispatcher_unittest.cc', | 111 'system/message_pipe_dispatcher_unittest.cc', |
| 112 'system/message_pipe_unittest.cc', | 112 'system/message_pipe_unittest.cc', |
| 113 'system/simple_dispatcher_unittest.cc', | 113 'system/simple_dispatcher_unittest.cc', |
| 114 'system/test_utils.h', | 114 'system/test_utils.h', |
| 115 'system/waiter_list_unittest.cc', | 115 'system/waiter_list_unittest.cc', |
| 116 'system/waiter_test_utils.cc', | 116 'system/waiter_test_utils.cc', |
| 117 'system/waiter_test_utils.h', | 117 'system/waiter_test_utils.h', |
| 118 'system/waiter_unittest.cc', | 118 'system/waiter_unittest.cc', |
| 119 ], | 119 ], |
| 120 }, | 120 }, |
| 121 { |
| 122 'target_name': 'mojo_bindings_test', |
| 123 'type': 'executable', |
| 124 'include_dirs': [ |
| 125 '..' |
| 126 ], |
| 127 'sources': [ |
| 128 'public/bindings/generated/sample_service_proxy.cc', |
| 129 'public/bindings/generated/sample_service_stub.cc', |
| 130 'public/bindings/sample_test.cc', |
| 131 'public/bindings/bindings_internal.cc', |
| 132 ], |
| 133 }, |
| 121 ], | 134 ], |
| 122 } | 135 } |
| OLD | NEW |