| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 # Essential components (and their tests) that are needed to build | 5 # Essential components (and their tests) that are needed to build |
| 6 # Chrome should be here. Other components that are useful only in | 6 # Chrome should be here. Other components that are useful only in |
| 7 # Mojo land like mojo_shell should be in mojo.gyp. | 7 # Mojo land like mojo_shell should be in mojo.gyp. |
| 8 { | 8 { |
| 9 'includes': [ | 9 'includes': [ |
| 10 'mojo_variables.gypi', | 10 'mojo_variables.gypi', |
| (...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 'mojo_edk.gyp:mojo_run_all_unittests', | 146 'mojo_edk.gyp:mojo_run_all_unittests', |
| 147 'mojo_public.gyp:mojo_cpp_bindings', | 147 'mojo_public.gyp:mojo_cpp_bindings', |
| 148 'mojo_public.gyp:mojo_public_test_utils', | 148 'mojo_public.gyp:mojo_public_test_utils', |
| 149 'mojo_url_type_converters', | 149 'mojo_url_type_converters', |
| 150 ], | 150 ], |
| 151 'sources': [ | 151 'sources': [ |
| 152 'common/common_custom_types_unittest.cc', | 152 'common/common_custom_types_unittest.cc', |
| 153 'common/common_type_converters_unittest.cc', | 153 'common/common_type_converters_unittest.cc', |
| 154 ], | 154 ], |
| 155 }, | 155 }, |
| 156 { | |
| 157 # GN version: //mojo/test:test_support | |
| 158 'target_name': 'mojo_test_support', | |
| 159 'type': 'static_library', | |
| 160 'dependencies': [ | |
| 161 '../base/base.gyp:base', | |
| 162 ], | |
| 163 'sources': [ | |
| 164 'test/test_utils.h', | |
| 165 'test/test_utils_posix.cc', | |
| 166 'test/test_utils_win.cc', | |
| 167 ], | |
| 168 }, | |
| 169 ], | 156 ], |
| 170 'conditions': [ | 157 'conditions': [ |
| 171 ['OS=="android"', { | 158 ['OS=="android"', { |
| 172 'targets': [ | 159 'targets': [ |
| 173 { | 160 { |
| 174 'target_name': 'mojo_jni_headers', | 161 'target_name': 'mojo_jni_headers', |
| 175 'type': 'none', | 162 'type': 'none', |
| 176 'dependencies': [ | 163 'dependencies': [ |
| 177 'mojo_java_set_jni_headers', | 164 'mojo_java_set_jni_headers', |
| 178 ], | 165 ], |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 '../build/isolate.gypi', | 225 '../build/isolate.gypi', |
| 239 ], | 226 ], |
| 240 'sources': [ | 227 'sources': [ |
| 241 'mojo_common_unittests.isolate', | 228 'mojo_common_unittests.isolate', |
| 242 ], | 229 ], |
| 243 }, | 230 }, |
| 244 ], | 231 ], |
| 245 }], | 232 }], |
| 246 ] | 233 ] |
| 247 } | 234 } |
| OLD | NEW |