| 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 'shell/application_loader.h', | 10 'shell/application_loader.h', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 'shell/shell_impl.h', | 27 'shell/shell_impl.h', |
| 28 'shell/switches.cc', | 28 'shell/switches.cc', |
| 29 'shell/switches.h', | 29 'shell/switches.h', |
| 30 'util/filename_util.cc', | 30 'util/filename_util.cc', |
| 31 'util/filename_util.h', | 31 'util/filename_util.h', |
| 32 ], | 32 ], |
| 33 'dependencies': [ | 33 'dependencies': [ |
| 34 '<(DEPTH)/base/base.gyp:base', | 34 '<(DEPTH)/base/base.gyp:base', |
| 35 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 35 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
| 36 '<(DEPTH)/crypto/crypto.gyp:crypto', | 36 '<(DEPTH)/crypto/crypto.gyp:crypto', |
| 37 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings_mojom', |
| 37 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', | 38 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', |
| 38 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', | 39 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', |
| 39 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', | 40 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', |
| 40 '<(DEPTH)/mojo/mojo_services.gyp:content_handler_bindings_mojom', | |
| 41 '<(DEPTH)/mojo/mojo_services.gyp:network_service_bindings_mojom', | 41 '<(DEPTH)/mojo/mojo_services.gyp:network_service_bindings_mojom', |
| 42 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_application_bindings_mojom
', | |
| 43 '<(DEPTH)/third_party/mojo/mojo_edk.gyp:mojo_system_impl', | 42 '<(DEPTH)/third_party/mojo/mojo_edk.gyp:mojo_system_impl', |
| 44 '<(DEPTH)/url/url.gyp:url_lib', | 43 '<(DEPTH)/url/url.gyp:url_lib', |
| 45 ], | 44 ], |
| 46 }, { | 45 }, { |
| 47 'target_name': 'mojo_shell_unittests', | 46 'target_name': 'mojo_shell_unittests', |
| 48 'type': 'executable', | 47 'type': 'executable', |
| 49 'sources': [ | 48 'sources': [ |
| 50 'shell/application_manager_unittest.cc', | 49 'shell/application_manager_unittest.cc', |
| 51 'shell/query_util_unittest.cc', | 50 'shell/query_util_unittest.cc', |
| 52 ], | 51 ], |
| (...skipping 17 matching lines...) Expand all Loading... |
| 70 'variables': { | 69 'variables': { |
| 71 'mojom_files': [ | 70 'mojom_files': [ |
| 72 'shell/test.mojom', | 71 'shell/test.mojom', |
| 73 ], | 72 ], |
| 74 }, | 73 }, |
| 75 'includes': [ | 74 'includes': [ |
| 76 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', | 75 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', |
| 77 ], | 76 ], |
| 78 }], | 77 }], |
| 79 } | 78 } |
| OLD | NEW |