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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
47 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', | 47 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', |
48 '<(DEPTH)/mojo/mojo_services.gyp:network_service_bindings_lib', | 48 '<(DEPTH)/mojo/mojo_services.gyp:network_service_bindings_lib', |
49 '<(DEPTH)/mojo/mojo_services.gyp:updater_bindings_lib', | 49 '<(DEPTH)/mojo/mojo_services.gyp:updater_bindings_lib', |
50 '<(DEPTH)/url/url.gyp:url_lib', | 50 '<(DEPTH)/url/url.gyp:url_lib', |
51 ], | 51 ], |
52 }, { | 52 }, { |
53 'target_name': 'mojo_shell_unittests', | 53 'target_name': 'mojo_shell_unittests', |
54 'type': 'executable', | 54 'type': 'executable', |
55 'sources': [ | 55 'sources': [ |
56 'shell/application_manager_unittest.cc', | 56 'shell/application_manager_unittest.cc', |
| 57 'shell/capability_filter_unittest.cc', |
57 'shell/query_util_unittest.cc', | 58 'shell/query_util_unittest.cc', |
58 ], | 59 ], |
59 'dependencies': [ | 60 'dependencies': [ |
60 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_lib', | 61 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_lib', |
61 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_test_bindings', | 62 '<(DEPTH)/mojo/mojo_shell.gyp:mojo_shell_test_bindings', |
62 '<(DEPTH)/base/base.gyp:base', | 63 '<(DEPTH)/base/base.gyp:base', |
63 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', | 64 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', |
64 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', | 65 '<(DEPTH)/mojo/mojo_base.gyp:mojo_common_lib', |
65 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', | 66 '<(DEPTH)/mojo/mojo_base.gyp:mojo_environment_chromium', |
66 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', | 67 '<(DEPTH)/mojo/mojo_base.gyp:mojo_url_type_converters', |
67 '<(DEPTH)/third_party/mojo/mojo_edk.gyp:mojo_run_all_unittests', | 68 '<(DEPTH)/third_party/mojo/mojo_edk.gyp:mojo_run_all_unittests', |
68 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', | 69 '<(DEPTH)/third_party/mojo/mojo_public.gyp:mojo_cpp_bindings', |
69 '<(DEPTH)/testing/gtest.gyp:gtest', | 70 '<(DEPTH)/testing/gtest.gyp:gtest', |
70 '<(DEPTH)/url/url.gyp:url_lib', | 71 '<(DEPTH)/url/url.gyp:url_lib', |
71 ] | 72 ] |
72 }, { | 73 }, { |
73 'target_name': 'mojo_shell_test_bindings', | 74 'target_name': 'mojo_shell_test_bindings', |
74 'type': 'static_library', | 75 'type': 'static_library', |
75 'variables': { | 76 'variables': { |
76 'mojom_files': [ | 77 'mojom_files': [ |
| 78 'shell/capability_filter_unittest.mojom', |
77 'shell/test.mojom', | 79 'shell/test.mojom', |
78 ], | 80 ], |
79 }, | 81 }, |
80 'includes': [ | 82 'includes': [ |
81 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', | 83 '../third_party/mojo/mojom_bindings_generator_explicit.gypi', |
82 ], | 84 ], |
83 }], | 85 }], |
84 } | 86 } |
OLD | NEW |