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', |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
46 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', | 46 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', |
47 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', | 47 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', |
48 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', | 48 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', |
49 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', | 49 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', |
50 '<(DEPTH)/url/url.gyp:url_lib', | 50 '<(DEPTH)/url/url.gyp:url_lib', |
51 ], | 51 ], |
52 }, { | 52 }, { |
53 'target_name': 'mojo_fetcher_lib', | 53 'target_name': 'mojo_fetcher_lib', |
54 'type': 'static_library', | 54 'type': 'static_library', |
55 'sources': [ | 55 'sources': [ |
56 'fetcher/about_fetcher.cc', | 56 'shell/fetcher/about_fetcher.cc', |
57 'fetcher/about_fetcher.h', | 57 'shell/fetcher/about_fetcher.h', |
58 'fetcher/data_fetcher.cc', | 58 'shell/fetcher/data_fetcher.cc', |
59 'fetcher/data_fetcher.h', | 59 'shell/fetcher/data_fetcher.h', |
60 'fetcher/local_fetcher.cc', | 60 'shell/fetcher/local_fetcher.cc', |
61 'fetcher/local_fetcher.h', | 61 'shell/fetcher/local_fetcher.h', |
62 'fetcher/network_fetcher.cc', | 62 'shell/fetcher/network_fetcher.cc', |
63 'fetcher/network_fetcher.h', | 63 'shell/fetcher/network_fetcher.h', |
64 'fetcher/switches.cc', | 64 'shell/fetcher/switches.cc', |
65 'fetcher/switches.h', | 65 'shell/fetcher/switches.h', |
66 'fetcher/update_fetcher.cc', | 66 'shell/fetcher/url_resolver.cc', |
67 'fetcher/update_fetcher.h', | 67 'shell/fetcher/url_resolver.h', |
68 'fetcher/url_resolver.cc', | |
69 'fetcher/url_resolver.h', | |
70 'shell/package_manager/content_handler_connection.cc', | 68 'shell/package_manager/content_handler_connection.cc', |
71 'shell/package_manager/content_handler_connection.h', | 69 'shell/package_manager/content_handler_connection.h', |
72 'shell/package_manager/package_manager_impl.cc', | 70 'shell/package_manager/package_manager_impl.cc', |
73 'shell/package_manager/package_manager_impl.h', | 71 'shell/package_manager/package_manager_impl.h', |
74 ], | 72 ], |
75 'dependencies': [ | 73 'dependencies': [ |
76 '<(DEPTH)/base/base.gyp:base', | 74 '<(DEPTH)/base/base.gyp:base', |
77 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', | 75 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn
amic_annotations', |
78 '<(DEPTH)/crypto/crypto.gyp:crypto', | 76 '<(DEPTH)/crypto/crypto.gyp:crypto', |
79 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', | 77 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
117 'mojom_files': [ | 115 'mojom_files': [ |
118 'shell/capability_filter_unittest.mojom', | 116 'shell/capability_filter_unittest.mojom', |
119 'shell/test.mojom', | 117 'shell/test.mojom', |
120 ], | 118 ], |
121 }, | 119 }, |
122 'includes': [ | 120 'includes': [ |
123 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', | 121 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', |
124 ], | 122 ], |
125 }], | 123 }], |
126 } | 124 } |
OLD | NEW |