| 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 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 'type': 'executable', | 105 'type': 'executable', |
| 106 'dependencies': [ | 106 'dependencies': [ |
| 107 '../../testing/gtest.gyp:gtest', | 107 '../../testing/gtest.gyp:gtest', |
| 108 'mojo_run_all_unittests', | 108 'mojo_run_all_unittests', |
| 109 '../public/mojo_public.gyp:mojo_environment_standalone', | 109 '../public/mojo_public.gyp:mojo_environment_standalone', |
| 110 '../public/mojo_public.gyp:mojo_public_test_utils', | 110 '../public/mojo_public.gyp:mojo_public_test_utils', |
| 111 '../public/mojo_public.gyp:mojo_utility', | 111 '../public/mojo_public.gyp:mojo_utility', |
| 112 ], | 112 ], |
| 113 'include_dirs': [ '../..' ], | 113 'include_dirs': [ '../..' ], |
| 114 'sources': [ | 114 'sources': [ |
| 115 '../public/cpp/environment/tests/async_waiter_unittest.cc', | 115 '../public/cpp/environment/tests/async_wait_unittest.cc', |
| 116 '../public/cpp/environment/tests/logger_unittest.cc', | 116 '../public/cpp/environment/tests/logger_unittest.cc', |
| 117 '../public/cpp/environment/tests/logging_unittest.cc', | 117 '../public/cpp/environment/tests/logging_unittest.cc', |
| 118 ], | 118 ], |
| 119 }, | 119 }, |
| 120 { | 120 { |
| 121 # GN version: //mojo/public/cpp/application/tests:mojo_public_application_
unittests | 121 # GN version: //mojo/public/cpp/application/tests:mojo_public_application_
unittests |
| 122 'target_name': 'mojo_public_application_unittests', | 122 'target_name': 'mojo_public_application_unittests', |
| 123 'type': 'executable', | 123 'type': 'executable', |
| 124 'dependencies': [ | 124 'dependencies': [ |
| 125 '../../base/base.gyp:base', | 125 '../../base/base.gyp:base', |
| (...skipping 278 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 404 'conditions': [ | 404 'conditions': [ |
| 405 ['OS=="ios"', { | 405 ['OS=="ios"', { |
| 406 'sources!': [ | 406 'sources!': [ |
| 407 'test/multiprocess_test_helper.cc', | 407 'test/multiprocess_test_helper.cc', |
| 408 ], | 408 ], |
| 409 }], | 409 }], |
| 410 ], | 410 ], |
| 411 }, | 411 }, |
| 412 ], | 412 ], |
| 413 } | 413 } |
| OLD | NEW |