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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
7 | 7 |
8 if (is_nacl) { | 8 if (is_nacl) { |
9 group("ppapi_lib") { | 9 group("ppapi_lib") { |
10 deps = [ | 10 deps = [ |
11 "//ppapi/native_client/src/untrusted/irt_stub:ppapi_stub_lib", | 11 "//ppapi/native_client/src/untrusted/irt_stub:ppapi_stub_lib", |
12 ] | 12 ] |
13 } | 13 } |
14 | 14 |
15 executable("nacl_irt") { | 15 executable("nacl_irt") { |
16 deps = [ | 16 deps = [ |
17 "//base", | 17 "//base", |
18 "//components/tracing", | 18 "//components/tracing", |
19 "//gpu/command_buffer/client", | 19 "//gpu/command_buffer/client", |
20 "//gpu/command_buffer/client:gles2_implementation", | 20 "//gpu/command_buffer/client:gles2_implementation", |
21 "//gpu/command_buffer/common", | 21 "//gpu/command_buffer/common", |
22 "//gpu/ipc/common:command_buffer_traits", | 22 "//gpu/ipc/common:command_buffer_traits", |
23 "//ipc", | 23 "//ipc", |
24 "//media:shared_memory_support", | 24 "//media:shared_memory_support", |
| 25 "//mojo/edk/system", |
25 "//native_client/src/shared/gio", | 26 "//native_client/src/shared/gio", |
26 "//native_client/src/shared/platform", | 27 "//native_client/src/shared/platform", |
27 "//native_client/src/tools/tls_edit($host_toolchain)", | 28 "//native_client/src/tools/tls_edit($host_toolchain)", |
28 "//native_client/src/untrusted/irt:irt_core_lib", | 29 "//native_client/src/untrusted/irt:irt_core_lib", |
29 "//native_client/src/untrusted/nacl:imc_syscalls", | 30 "//native_client/src/untrusted/nacl:imc_syscalls", |
30 "//ppapi/native_client/src/untrusted/pnacl_irt_shim:irt", | 31 "//ppapi/native_client/src/untrusted/pnacl_irt_shim:irt", |
31 "//ppapi/proxy", | 32 "//ppapi/proxy", |
32 "//ppapi/proxy:ipc", | 33 "//ppapi/proxy:ipc", |
33 "//ppapi/shared_impl", | 34 "//ppapi/shared_impl", |
34 ] | 35 ] |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
116 # On 32-bit Windows, we also ship the 64-bit IRT. | 117 # On 32-bit Windows, we also ship the 64-bit IRT. |
117 if (is_win && target_cpu == "x86") { | 118 if (is_win && target_cpu == "x86") { |
118 irt_x64_deps = [ | 119 irt_x64_deps = [ |
119 ":nacl_irt_debug(//build/toolchain/nacl:irt_x64)", | 120 ":nacl_irt_debug(//build/toolchain/nacl:irt_x64)", |
120 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_x64)", | 121 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_x64)", |
121 ] | 122 ] |
122 public_deps += irt_x64_deps | 123 public_deps += irt_x64_deps |
123 data_deps += irt_x64_deps | 124 data_deps += irt_x64_deps |
124 } | 125 } |
125 } | 126 } |
OLD | NEW |