| 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", | 22 "//gpu/ipc/common", |
| 23 "//ipc", | 23 "//ipc", |
| 24 "//media:shared_memory_support", | 24 "//media:shared_memory_support", |
| 25 "//native_client/src/shared/gio", | 25 "//native_client/src/shared/gio", |
| 26 "//native_client/src/shared/platform", | 26 "//native_client/src/shared/platform", |
| 27 "//native_client/src/tools/tls_edit($host_toolchain)", | 27 "//native_client/src/tools/tls_edit($host_toolchain)", |
| 28 "//native_client/src/untrusted/irt:irt_core_lib", | 28 "//native_client/src/untrusted/irt:irt_core_lib", |
| 29 "//native_client/src/untrusted/nacl:imc_syscalls", | 29 "//native_client/src/untrusted/nacl:imc_syscalls", |
| 30 "//ppapi/native_client/src/untrusted/pnacl_irt_shim:irt", | 30 "//ppapi/native_client/src/untrusted/pnacl_irt_shim:irt", |
| 31 "//ppapi/proxy", | 31 "//ppapi/proxy", |
| 32 "//ppapi/proxy:ipc", | 32 "//ppapi/proxy:ipc", |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 # On 32-bit Windows, we also ship the 64-bit IRT. | 109 # On 32-bit Windows, we also ship the 64-bit IRT. |
| 110 if (is_win && target_cpu == "x86") { | 110 if (is_win && target_cpu == "x86") { |
| 111 irt_x64_deps = [ | 111 irt_x64_deps = [ |
| 112 ":nacl_irt_debug(//build/toolchain/nacl:irt_x64)", | 112 ":nacl_irt_debug(//build/toolchain/nacl:irt_x64)", |
| 113 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_x64)", | 113 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_x64)", |
| 114 ] | 114 ] |
| 115 public_deps += irt_x64_deps | 115 public_deps += irt_x64_deps |
| 116 data_deps += irt_x64_deps | 116 data_deps += irt_x64_deps |
| 117 } | 117 } |
| 118 } | 118 } |
| OLD | NEW |