| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 'targets': [{ | 6 'targets': [{ |
| 7 'target_name': 'mojo_shell_lib', | 7 'target_name': 'mojo_shell_lib', |
| 8 'type': 'static_library', | 8 'type': 'static_library', |
| 9 'sources': [ | 9 'sources': [ |
| 10 'services/package_manager/loader.cc', | 10 'services/package_manager/loader.cc', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', | 43 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', |
| 44 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', | 44 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', |
| 45 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', | 45 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', |
| 46 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', | 46 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', |
| 47 '<(DEPTH)/url/url.gyp:url_lib', | 47 '<(DEPTH)/url/url.gyp:url_lib', |
| 48 ], | 48 ], |
| 49 }, { | 49 }, { |
| 50 'target_name': 'mojo_shell_unittests', | 50 'target_name': 'mojo_shell_unittests', |
| 51 'type': 'executable', | 51 'type': 'executable', |
| 52 'sources': [ | 52 'sources': [ |
| 53 'shell/application_manager_unittest.cc', | 53 'shell/tests/application_manager_unittest.cc', |
| 54 'shell/capability_filter_unittest.cc', | 54 'shell/tests/capability_filter_unittest.cc', |
| 55 ], | 55 ], |
| 56 'dependencies': [ | 56 'dependencies': [ |
| 57 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_lib', | 57 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_lib', |
| 58 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_test_bindings', | 58 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_test_bindings', |
| 59 '<(DEPTH)/base/base.gyp:base', | 59 '<(DEPTH)/base/base.gyp:base', |
| 60 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', | 60 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', |
| 61 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', | 61 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', |
| 62 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', | 62 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', |
| 63 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', | 63 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', |
| 64 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', | 64 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', |
| 65 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings', | 65 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 66 '<(DEPTH)/testing/gtest.gyp:gtest', | 66 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 67 '<(DEPTH)/url/url.gyp:url_lib', | 67 '<(DEPTH)/url/url.gyp:url_lib', |
| 68 ] | 68 ] |
| 69 }, { | 69 }, { |
| 70 'target_name': 'mojo_shell_test_bindings', | 70 'target_name': 'mojo_shell_test_bindings', |
| 71 'type': 'static_library', | 71 'type': 'static_library', |
| 72 'variables': { | 72 'variables': { |
| 73 'mojom_files': [ | 73 'mojom_files': [ |
| 74 'shell/capability_filter_unittest.mojom', | 74 'shell/tests/capability_filter_unittest.mojom', |
| 75 'shell/test.mojom', | 75 'shell/tests/test.mojom', |
| 76 ], | 76 ], |
| 77 }, | 77 }, |
| 78 'includes': [ | 78 'includes': [ |
| 79 'mojom_bindings_generator_explicit.gypi', | 79 'mojom_bindings_generator_explicit.gypi', |
| 80 ], | 80 ], |
| 81 }], | 81 }], |
| 82 } | 82 } |
| OLD | NEW |