| 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 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 205 }, | 205 }, |
| 206 { | 206 { |
| 207 # GN version: //mojo/shell/public/cpp/tests | 207 # GN version: //mojo/shell/public/cpp/tests |
| 208 'target_name': 'mojo_public_application_unittests', | 208 'target_name': 'mojo_public_application_unittests', |
| 209 'type': 'executable', | 209 'type': 'executable', |
| 210 'dependencies': [ | 210 'dependencies': [ |
| 211 '../base/base.gyp:base', | 211 '../base/base.gyp:base', |
| 212 '../testing/gtest.gyp:gtest', | 212 '../testing/gtest.gyp:gtest', |
| 213 'mojo_application_base', | 213 'mojo_application_base', |
| 214 'mojo_edk.gyp:mojo_run_all_unittests', | 214 'mojo_edk.gyp:mojo_run_all_unittests', |
| 215 'mojo_public.gyp:mojo_utility', | |
| 216 ], | 215 ], |
| 217 'sources': [ | 216 'sources': [ |
| 218 'shell/public/cpp/tests/interface_registry_unittest.cc', | 217 'shell/public/cpp/tests/interface_registry_unittest.cc', |
| 219 ], | 218 ], |
| 220 }, | 219 }, |
| 221 { | 220 { |
| 222 # Technically, these should be in the mojo_services.gyp, but this causes | 221 # Technically, these should be in the mojo_services.gyp, but this causes |
| 223 # a cycle since the ios generator can't have gyp files refer to each | 222 # a cycle since the ios generator can't have gyp files refer to each |
| 224 # other, even if the targets don't form a cycle. | 223 # other, even if the targets don't form a cycle. |
| 225 # | 224 # |
| (...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 330 '../build/isolate.gypi', | 329 '../build/isolate.gypi', |
| 331 ], | 330 ], |
| 332 'sources': [ | 331 'sources': [ |
| 333 'mojo_common_unittests.isolate', | 332 'mojo_common_unittests.isolate', |
| 334 ], | 333 ], |
| 335 }, | 334 }, |
| 336 ], | 335 ], |
| 337 }], | 336 }], |
| 338 ] | 337 ] |
| 339 } | 338 } |
| OLD | NEW |