| 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', |
| 11 'services/package_manager/loader.h', | 11 'services/package_manager/loader.h', |
| 12 'services/package_manager/package_manager.cc', | 12 'services/package_manager/package_manager.cc', |
| 13 'services/package_manager/package_manager.h', | 13 'services/package_manager/package_manager.h', |
| 14 'shell/application_instance.cc', | 14 'shell/application_instance.cc', |
| 15 'shell/application_instance.h', | 15 'shell/application_instance.h', |
| 16 'shell/application_loader.h', | 16 'shell/application_loader.h', |
| 17 'shell/application_manager.cc', | 17 'shell/application_manager.cc', |
| 18 'shell/application_manager.h', | 18 'shell/application_manager.h', |
| 19 'shell/capability_filter.cc', | 19 'shell/capability_filter.cc', |
| 20 'shell/capability_filter.h', | 20 'shell/capability_filter.h', |
| 21 'shell/connect_to_application_params.cc', | 21 'shell/connect_to_application_params.cc', |
| 22 'shell/connect_to_application_params.h', | 22 'shell/connect_to_application_params.h', |
| 23 'shell/content_handler_connection.cc', | |
| 24 'shell/content_handler_connection.h', | |
| 25 'shell/connect_util.cc', | 23 'shell/connect_util.cc', |
| 26 'shell/connect_util.h', | 24 'shell/connect_util.h', |
| 27 'shell/identity.cc', | 25 'shell/identity.cc', |
| 28 'shell/identity.h', | 26 'shell/identity.h', |
| 29 'shell/native_runner.h', | 27 'shell/native_runner.h', |
| 30 'shell/shell_application_delegate.cc', | 28 'shell/shell_application_delegate.cc', |
| 31 'shell/shell_application_delegate.h', | 29 'shell/shell_application_delegate.h', |
| 32 'shell/shell_application_loader.cc', | 30 'shell/shell_application_loader.cc', |
| 33 'shell/shell_application_loader.h', | 31 'shell/shell_application_loader.h', |
| 32 'shell/shell_client_factory_connection.cc', |
| 33 'shell/shell_client_factory_connection.h', |
| 34 'shell/static_application_loader.cc', | 34 'shell/static_application_loader.cc', |
| 35 'shell/static_application_loader.h', | 35 'shell/static_application_loader.h', |
| 36 'shell/switches.cc', | 36 'shell/switches.cc', |
| 37 'shell/switches.cc', | 37 'shell/switches.cc', |
| 38 'util/filename_util.cc', | 38 'util/filename_util.cc', |
| 39 'util/filename_util.h', | 39 'util/filename_util.h', |
| 40 ], | 40 ], |
| 41 'dependencies': [ | 41 'dependencies': [ |
| 42 '<(DEPTH)/base/base.gyp:base', | 42 '<(DEPTH)/base/base.gyp:base', |
| 43 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 43 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 'mojom_files': [ | 75 'mojom_files': [ |
| 76 'shell/capability_filter_unittest.mojom', | 76 'shell/capability_filter_unittest.mojom', |
| 77 'shell/test.mojom', | 77 'shell/test.mojom', |
| 78 ], | 78 ], |
| 79 }, | 79 }, |
| 80 'includes': [ | 80 'includes': [ |
| 81 'mojom_bindings_generator_explicit.gypi', | 81 'mojom_bindings_generator_explicit.gypi', |
| 82 ], | 82 ], |
| 83 }], | 83 }], |
| 84 } | 84 } |
| OLD | NEW |