| 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 'services/catalog/builder.cc', | 10 'services/catalog/builder.cc', |
| (...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 'type': 'static_library', | 67 'type': 'static_library', |
| 68 'variables': { | 68 'variables': { |
| 69 'mojom_files': [ | 69 'mojom_files': [ |
| 70 'shell/tests/test.mojom', | 70 'shell/tests/test.mojom', |
| 71 ], | 71 ], |
| 72 }, | 72 }, |
| 73 'includes': [ | 73 'includes': [ |
| 74 'mojom_bindings_generator_explicit.gypi', | 74 'mojom_bindings_generator_explicit.gypi', |
| 75 ], | 75 ], |
| 76 }, { | 76 }, { |
| 77 'target_name': 'mojo_runner_connection_lib', | |
| 78 'type': 'static_library', | |
| 79 'sources': [ | |
| 80 'shell/runner/child/runner_connection.cc', | |
| 81 'shell/runner/child/runner_connection.h', | |
| 82 ], | |
| 83 'dependencies': [ | |
| 84 'mojo_runner_common_lib', | |
| 85 '<(DEPTH)/base/base.gyp:base', | |
| 86 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_base', | |
| 87 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', | |
| 88 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', | |
| 89 '<(DEPTH)/mojo/mojo_platform_handle.gyp:platform_handle', | |
| 90 '<(DEPTH)/mojo/mojo_public.gyp:mojo_message_pump_lib', | |
| 91 ], | |
| 92 'export_dependent_settings': [ | |
| 93 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', | |
| 94 ], | |
| 95 }, { | |
| 96 'target_name': 'mojo_runner_common_lib', | 77 'target_name': 'mojo_runner_common_lib', |
| 97 'type': 'static_library', | 78 'type': 'static_library', |
| 98 'sources': [ | 79 'sources': [ |
| 80 'shell/runner/common/client_util.cc', |
| 81 'shell/runner/common/client_util.h', |
| 99 'shell/runner/common/switches.cc', | 82 'shell/runner/common/switches.cc', |
| 100 'shell/runner/common/switches.h', | 83 'shell/runner/common/switches.h', |
| 101 ], | 84 ], |
| 102 'include_dirs': [ | 85 'include_dirs': [ |
| 103 '..', | 86 '..', |
| 104 ], | 87 ], |
| 88 'dependencies': [ |
| 89 '<(DEPTH)/base/base.gyp:base', |
| 90 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', |
| 91 '<(DEPTH)/mojo/mojo_edk.gyp:mojo_system_impl', |
| 92 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_bindings', |
| 93 '<(DEPTH)/mojo/mojo_public.gyp:mojo_cpp_system', |
| 94 ], |
| 95 'export_dependent_settings': [ |
| 96 '<(DEPTH)/mojo/mojo_base.gyp:mojo_application_bindings', |
| 97 ], |
| 105 }, { | 98 }, { |
| 106 'target_name': 'mojo_runner_host_lib', | 99 'target_name': 'mojo_runner_host_lib', |
| 107 'type': 'static_library', | 100 'type': 'static_library', |
| 108 'sources': [ | 101 'sources': [ |
| 109 'shell/runner/host/child_process.cc', | 102 'shell/runner/host/child_process.cc', |
| 110 'shell/runner/host/child_process.h', | 103 'shell/runner/host/child_process.h', |
| 111 'shell/runner/host/child_process_base.cc', | 104 'shell/runner/host/child_process_base.cc', |
| 112 'shell/runner/host/child_process_base.h', | 105 'shell/runner/host/child_process_base.h', |
| 113 'shell/runner/host/child_process_host.cc', | 106 'shell/runner/host/child_process_host.cc', |
| 114 'shell/runner/host/child_process_host.h', | 107 'shell/runner/host/child_process_host.h', |
| (...skipping 29 matching lines...) Expand all Loading... |
| 144 'dependencies': [ | 137 'dependencies': [ |
| 145 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', | 138 '<(DEPTH)/sandbox/sandbox.gyp:sandbox', |
| 146 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services', | 139 '<(DEPTH)/sandbox/sandbox.gyp:sandbox_services', |
| 147 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf', | 140 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf', |
| 148 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf_helpers', | 141 '<(DEPTH)/sandbox/sandbox.gyp:seccomp_bpf_helpers', |
| 149 ], | 142 ], |
| 150 }], | 143 }], |
| 151 ], | 144 ], |
| 152 }], | 145 }], |
| 153 } | 146 } |
| OLD | NEW |