Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: mojo/mojo_shell.gyp

Issue 1356623002: mojo: Add DataURLFetcher for processing data: urls. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: lolgyp Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', 44 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium',
45 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', 45 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters',
46 '<(DEPTH)/url/url.gyp:url_lib', 46 '<(DEPTH)/url/url.gyp:url_lib',
47 ], 47 ],
48 }, { 48 }, {
49 'target_name': 'mojo_fetcher_lib', 49 'target_name': 'mojo_fetcher_lib',
50 'type': 'static_library', 50 'type': 'static_library',
51 'sources': [ 51 'sources': [
52 'fetcher/about_fetcher.cc', 52 'fetcher/about_fetcher.cc',
53 'fetcher/about_fetcher.h', 53 'fetcher/about_fetcher.h',
54 'fetcher/data_fetcher.cc',
55 'fetcher/data_fetcher.h',
54 'fetcher/local_fetcher.cc', 56 'fetcher/local_fetcher.cc',
55 'fetcher/local_fetcher.h', 57 'fetcher/local_fetcher.h',
56 'fetcher/network_fetcher.cc', 58 'fetcher/network_fetcher.cc',
57 'fetcher/network_fetcher.h', 59 'fetcher/network_fetcher.h',
58 'fetcher/switches.cc', 60 'fetcher/switches.cc',
59 'fetcher/switches.h', 61 'fetcher/switches.h',
60 'fetcher/update_fetcher.cc', 62 'fetcher/update_fetcher.cc',
61 'fetcher/update_fetcher.h', 63 'fetcher/update_fetcher.h',
62 'fetcher/url_resolver.cc', 64 'fetcher/url_resolver.cc',
63 'fetcher/url_resolver.h', 65 'fetcher/url_resolver.h',
64 'package_manager/package_manager_impl.cc', 66 'package_manager/package_manager_impl.cc',
65 'package_manager/package_manager_impl.h', 67 'package_manager/package_manager_impl.h',
66 ], 68 ],
67 'dependencies': [ 69 'dependencies': [
68 '<(DEPTH)/base/base.gyp:base', 70 '<(DEPTH)/base/base.gyp:base',
69 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 71 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
70 '<(DEPTH)/crypto/crypto.gyp:crypto', 72 '<(DEPTH)/crypto/crypto.gyp:crypto',
71 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', 73 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
72 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', 74 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings',
73 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', 75 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib',
74 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', 76 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium',
75 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', 77 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters',
76 '<(DEPTH)/mojo/mojo_services.gyp:network_service_bindings_lib', 78 '<(DEPTH)/mojo/mojo_services.gyp:network_service_bindings_lib',
77 '<(DEPTH)/mojo/mojo_services.gyp:updater_bindings_lib', 79 '<(DEPTH)/mojo/mojo_services.gyp:updater_bindings_lib',
78 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_lib', 80 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_lib',
81 '<(DEPTH)/net/net.gyp:net',
79 '<(DEPTH)/url/url.gyp:url_lib', 82 '<(DEPTH)/url/url.gyp:url_lib',
80 ] 83 ]
81 }, { 84 }, {
82 'target_name': 'mojo_shell_unittests', 85 'target_name': 'mojo_shell_unittests',
83 'type': 'executable', 86 'type': 'executable',
84 'sources': [ 87 'sources': [
85 'shell/application_manager_unittest.cc', 88 'shell/application_manager_unittest.cc',
86 'shell/capability_filter_unittest.cc', 89 'shell/capability_filter_unittest.cc',
87 'shell/query_util_unittest.cc', 90 'shell/query_util_unittest.cc',
88 'shell/test_package_manager.cc', 91 'shell/test_package_manager.cc',
(...skipping 19 matching lines...) Expand all
108 'mojom_files': [ 111 'mojom_files': [
109 'shell/capability_filter_unittest.mojom', 112 'shell/capability_filter_unittest.mojom',
110 'shell/test.mojom', 113 'shell/test.mojom',
111 ], 114 ],
112 }, 115 },
113 'includes': [ 116 'includes': [
114 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', 117 '../third_party/mojo/mojom_bindings_generator_explicit.gypi',
115 ], 118 ],
116 }], 119 }],
117 } 120 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698