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

Side by Side Diff: services/shell/shell.gyp

Issue 1898433002: Remove shell::Loader (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix windows gyp linkage Created 4 years, 8 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
« no previous file with comments | « services/shell/shell.cc ('k') | services/shell/tests/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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': 'shell_interfaces', 7 'target_name': 'shell_interfaces',
8 'type': 'none', 8 'type': 'none',
9 'variables': { 9 'variables': {
10 'mojom_files': [ 10 'mojom_files': [
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 '../catalog/constants.h', 72 '../catalog/constants.h',
73 '../catalog/entry.cc', 73 '../catalog/entry.cc',
74 '../catalog/entry.h', 74 '../catalog/entry.h',
75 '../catalog/reader.cc', 75 '../catalog/reader.cc',
76 '../catalog/reader.h', 76 '../catalog/reader.h',
77 '../catalog/resolver.cc', 77 '../catalog/resolver.cc',
78 '../catalog/resolver.h', 78 '../catalog/resolver.h',
79 '../catalog/store.cc', 79 '../catalog/store.cc',
80 '../catalog/store.h', 80 '../catalog/store.h',
81 '../catalog/types.h', 81 '../catalog/types.h',
82 'loader.h',
83 'connect_params.cc', 82 'connect_params.cc',
84 'connect_params.h', 83 'connect_params.h',
85 'connect_util.cc', 84 'connect_util.cc',
86 'connect_util.h', 85 'connect_util.h',
87 'native_runner.h', 86 'native_runner.h',
88 'native_runner_delegate.h', 87 'native_runner_delegate.h',
89 'shell.cc', 88 'shell.cc',
90 'shell.h', 89 'shell.h',
91 'switches.cc', 90 'switches.cc',
92 'switches.cc', 91 'switches.cc',
93 '<(DEPTH)/mojo/util/filename_util.cc', 92 '<(DEPTH)/mojo/util/filename_util.cc',
94 '<(DEPTH)/mojo/util/filename_util.h', 93 '<(DEPTH)/mojo/util/filename_util.h',
95 ], 94 ],
96 'dependencies': [ 95 'dependencies': [
97 'shell_public', 96 'shell_public',
98 '<(DEPTH)/base/base.gyp:base', 97 '<(DEPTH)/base/base.gyp:base',
99 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations', 98 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dyn amic_annotations',
100 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', 99 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib',
101 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', 100 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters',
102 '<(DEPTH)/net/net.gyp:net', 101 '<(DEPTH)/net/net.gyp:net',
103 '<(DEPTH)/url/url.gyp:url_lib', 102 '<(DEPTH)/url/url.gyp:url_lib',
104 ], 103 ],
105 'export_dependent_settings': [ 104 'export_dependent_settings': [
106 'shell_public', 105 'shell_public',
107 ], 106 ],
108 }, { 107 }, {
109 'target_name': 'mojo_shell_unittests', 108 'target_name': 'mojo_shell_unittests',
110 'type': 'executable', 109 'type': 'executable',
111 'sources': [ 110 'sources': [
112 'tests/loader_unittest.cc', 111 'tests/placeholder_unittest.cc',
113 ], 112 ],
114 'dependencies': [ 113 'dependencies': [
115 'shell_lib', 114 'shell_lib',
116 'shell_public', 115 'shell_public',
117 'shell_test_public', 116 'shell_test_public',
118 '<(DEPTH)/base/base.gyp:base', 117 '<(DEPTH)/base/base.gyp:base',
119 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', 118 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib',
120 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', 119 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters',
121 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', 120 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests',
122 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings', 121 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings',
(...skipping 113 matching lines...) Expand 10 before | Expand all | Expand 10 after
236 'shell_public', 235 'shell_public',
237 '<(DEPTH)/base/base.gyp:base', 236 '<(DEPTH)/base/base.gyp:base',
238 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests', 237 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_run_all_unittests',
239 '<(DEPTH)/testing/gtest.gyp:gtest', 238 '<(DEPTH)/testing/gtest.gyp:gtest',
240 ], 239 ],
241 'sources': [ 240 'sources': [
242 'public/cpp/tests/interface_registry_unittest.cc', 241 'public/cpp/tests/interface_registry_unittest.cc',
243 ], 242 ],
244 }], 243 }],
245 } 244 }
OLDNEW
« no previous file with comments | « services/shell/shell.cc ('k') | services/shell/tests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698