| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/features.gni") | |
| 7 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
| 8 import("//build/config/nacl/rules.gni") | 7 import("//build/config/nacl/rules.gni") |
| 9 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 10 if (is_mac) { | 9 if (is_mac) { |
| 11 import("//build/config/mac/rules.gni") | 10 import("//build/config/mac/rules.gni") |
| 12 } | 11 } |
| 13 | 12 |
| 14 assert(!is_android || enable_plugins, | 13 assert(!is_android || enable_plugins, |
| 15 "//ppapi should not be referenced when is_android && !enable_plugins") | 14 "//ppapi should not be referenced when is_android && !enable_plugins") |
| 16 | 15 |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 data_deps += | 467 data_deps += |
| 469 [ ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})" ] | 468 [ ":ppapi_nacl_tests(//build/toolchain/nacl:glibc_${target_cpu})" ] |
| 470 } | 469 } |
| 471 | 470 |
| 472 if (is_linux && enable_nacl_nonsfi) { | 471 if (is_linux && enable_nacl_nonsfi) { |
| 473 data_deps += | 472 data_deps += |
| 474 [ ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)" ] | 473 [ ":ppapi_nacl_tests(//build/toolchain/nacl:newlib_pnacl_nonsfi)" ] |
| 475 } | 474 } |
| 476 } | 475 } |
| 477 } | 476 } |
| OLD | NEW |