| 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_instance.cc', | 10 'shell/application_instance.cc', |
| 11 'shell/application_instance.h', | 11 'shell/application_instance.h', |
| 12 'shell/application_loader.h', | 12 'shell/application_loader.h', |
| 13 'shell/application_manager.cc', | 13 'shell/application_manager.cc', |
| 14 'shell/application_manager.h', | 14 'shell/application_manager.h', |
| 15 'shell/capability_filter.cc', | 15 'shell/capability_filter.cc', |
| 16 'shell/capability_filter.h', | 16 'shell/capability_filter.h', |
| 17 'shell/connect_to_application_params.cc', | 17 'shell/connect_to_application_params.cc', |
| 18 'shell/connect_to_application_params.h', | 18 'shell/connect_to_application_params.h', |
| 19 'shell/connect_util.cc', | 19 'shell/connect_util.cc', |
| 20 'shell/connect_util.h', | 20 'shell/connect_util.h', |
| 21 'shell/content_handler_connection.cc', | |
| 22 'shell/content_handler_connection.h', | |
| 23 'shell/data_pipe_peek.cc', | 21 'shell/data_pipe_peek.cc', |
| 24 'shell/data_pipe_peek.h', | 22 'shell/data_pipe_peek.h', |
| 25 'shell/fetcher.cc', | 23 'shell/fetcher.cc', |
| 26 'shell/fetcher.h', | 24 'shell/fetcher.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/package_manager.h', | 28 'shell/package_manager.h', |
| 31 'shell/query_util.cc', | 29 'shell/query_util.cc', |
| 32 'shell/query_util.h', | 30 'shell/query_util.h', |
| (...skipping 25 matching lines...) Expand all Loading... |
| 58 'fetcher/local_fetcher.cc', | 56 'fetcher/local_fetcher.cc', |
| 59 'fetcher/local_fetcher.h', | 57 'fetcher/local_fetcher.h', |
| 60 'fetcher/network_fetcher.cc', | 58 'fetcher/network_fetcher.cc', |
| 61 'fetcher/network_fetcher.h', | 59 'fetcher/network_fetcher.h', |
| 62 'fetcher/switches.cc', | 60 'fetcher/switches.cc', |
| 63 'fetcher/switches.h', | 61 'fetcher/switches.h', |
| 64 'fetcher/update_fetcher.cc', | 62 'fetcher/update_fetcher.cc', |
| 65 'fetcher/update_fetcher.h', | 63 'fetcher/update_fetcher.h', |
| 66 'fetcher/url_resolver.cc', | 64 'fetcher/url_resolver.cc', |
| 67 'fetcher/url_resolver.h', | 65 'fetcher/url_resolver.h', |
| 66 'package_manager/content_handler_connection.cc', |
| 67 'package_manager/content_handler_connection.h', |
| 68 'package_manager/package_manager_impl.cc', | 68 'package_manager/package_manager_impl.cc', |
| 69 'package_manager/package_manager_impl.h', | 69 'package_manager/package_manager_impl.h', |
| 70 ], | 70 ], |
| 71 'dependencies': [ | 71 'dependencies': [ |
| 72 '<(DEPTH)/base/base.gyp:base', | 72 '<(DEPTH)/base/base.gyp:base', |
| 73 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 73 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
| 74 '<(DEPTH)/crypto/crypto.gyp:crypto', | 74 '<(DEPTH)/crypto/crypto.gyp:crypto', |
| 75 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', | 75 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', |
| 76 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', | 76 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', |
| 77 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', | 77 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 'mojom_files': [ | 113 'mojom_files': [ |
| 114 'shell/capability_filter_unittest.mojom', | 114 'shell/capability_filter_unittest.mojom', |
| 115 'shell/test.mojom', | 115 'shell/test.mojom', |
| 116 ], | 116 ], |
| 117 }, | 117 }, |
| 118 'includes': [ | 118 'includes': [ |
| 119 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', | 119 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', |
| 120 ], | 120 ], |
| 121 }], | 121 }], |
| 122 } | 122 } |
| OLD | NEW |