1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
{
'targets': [{
'target_name': 'mojo_shell_lib',
'type': 'static_library',
'sources': [
'shell/application_loader.h',
'shell/application_manager.cc',
'shell/application_manager.h',
'shell/data_pipe_peek.cc',
'shell/data_pipe_peek.h',
'shell/fetcher.cc',
'shell/fetcher.h',
'shell/identity.cc',
'shell/identity.h',
'shell/local_fetcher.cc',
'shell/local_fetcher.h',
'shell/native_runner.h',
'shell/network_fetcher.cc',
'shell/network_fetcher.h',
'shell/query_util.cc',
'shell/query_util.h',
'shell/shell_impl.cc',
'shell/shell_impl.h',
'shell/static_application_loader.cc',
'shell/static_application_loader.h',
'shell/switches.cc',
'shell/switches.cc',
'shell/update_fetcher.cc',
'shell/update_fetcher.h',
'util/filename_util.cc',
'util/filename_util.h',
],
'dependencies': [
'<(DEPTH)/base/base.gyp:base',
'<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:dynamic_annotations',
'<(DEPTH)/crypto/crypto.gyp:crypto',
'<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
'<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings',
'<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib',
'<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium',
'<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters',
'<(DEPTH)/mojo/mojo_services.gyp:network_service_bindings_lib',
'<(DEPTH)/mojo/mojo_services.gyp:updater_bindings_lib',
'<(DEPTH)/url/url.gyp:url_lib',
],
}, {
'target_name': 'mojo_shell_unittests',
'type': 'executable',
'sources': [
'shell/application_manager_unittest.cc',
'shell/query_util_unittest.cc',
],
'dependencies': [
'<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_lib',
'<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_test_bindings',
'<(DEPTH)/base/base.gyp:base',
'<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base',
'<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib',
'<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium',
'<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters',
'<(DEPTH)/third_party/mojo/mojo_edk.gyp:mojo_run_all_unittests',
'<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings',
'<(DEPTH)/testing/gtest.gyp:gtest',
'<(DEPTH)/url/url.gyp:url_lib',
]
}, {
'target_name': 'mojo_shell_test_bindings',
'type': 'static_library',
'variables': {
'mojom_files': [
'shell/test.mojom',
],
},
'includes': [
'../third_party/mojo/mojom_bindings_generator_explicit.gypi',
],
}],
}
|