| 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 = [ |
| (...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 args = [ | 89 args = [ |
| 90 rebase_path(objcopy), | 90 rebase_path(objcopy), |
| 91 rebase_path(irt_debug), | 91 rebase_path(irt_debug), |
| 92 rebase_path(irt_stripped), | 92 rebase_path(irt_stripped), |
| 93 rebase_path(irt_final), | 93 rebase_path(irt_final), |
| 94 ] | 94 ] |
| 95 } | 95 } |
| 96 } | 96 } |
| 97 | 97 |
| 98 group("irt") { | 98 group("irt") { |
| 99 data_deps = [ | 99 public_deps = [ |
| 100 ":nacl_irt_debug(//build/toolchain/nacl:irt_${target_cpu})", | 100 ":nacl_irt_debug(//build/toolchain/nacl:irt_${target_cpu})", |
| 101 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_${target_cpu})", | 101 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_${target_cpu})", |
| 102 ] | 102 ] |
| 103 | 103 |
| 104 # On 32-bit Windows, we also ship the 64-bit IRT. | 104 # On 32-bit Windows, we also ship the 64-bit IRT. |
| 105 if (is_win && target_cpu == "x86") { | 105 if (is_win && target_cpu == "x86") { |
| 106 data_deps += [ | 106 public_deps += [ |
| 107 ":nacl_irt_debug(//build/toolchain/nacl:irt_x64)", | 107 ":nacl_irt_debug(//build/toolchain/nacl:irt_x64)", |
| 108 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_x64)", | 108 ":nacl_irt_debuglink(//build/toolchain/nacl:irt_x64)", |
| 109 ] | 109 ] |
| 110 } | 110 } |
| 111 } | 111 } |
| OLD | NEW |