| 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/nacl/config.gni") | 5 import("//build/config/nacl/config.gni") |
| 6 import("//build/config/nacl/rules.gni") | 6 import("//build/config/nacl/rules.gni") |
| 7 | 7 |
| 8 if (current_toolchain == default_toolchain) { | 8 if (current_toolchain == default_toolchain) { |
| 9 chromevox_test_data_dir = "$root_build_dir/chromevox_test_data/braille" | 9 chromevox_test_data_dir = "$root_build_dir/chromevox_test_data/braille" |
| 10 | 10 |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 "$depfile.stamp", | 42 "$depfile.stamp", |
| 43 ] | 43 ] |
| 44 args = [ | 44 args = [ |
| 45 "-D", | 45 "-D", |
| 46 rebase_path(".", root_build_dir), | 46 rebase_path(".", root_build_dir), |
| 47 "-D", | 47 "-D", |
| 48 rebase_path("src/tables", root_build_dir), | 48 rebase_path("src/tables", root_build_dir), |
| 49 "-d", | 49 "-d", |
| 50 rebase_path("$dest_dir/tables", root_build_dir), | 50 rebase_path("$dest_dir/tables", root_build_dir), |
| 51 "-e", | 51 "-e", |
| 52 rebase_path("cvox-common.cti", root_build_dir), | 52 "cvox-common.cti", |
| 53 "--depfile", | 53 "--depfile", |
| 54 rebase_path(depfile, root_build_dir), | 54 rebase_path(depfile, root_build_dir), |
| 55 ] + rebase_path(sources, root_build_dir) | 55 ] + rebase_path(sources, root_build_dir) |
| 56 } | 56 } |
| 57 | 57 |
| 58 copy(tables_json_target_name) { | 58 copy(tables_json_target_name) { |
| 59 forward_variables_from(invoker, [ "testonly" ]) | 59 forward_variables_from(invoker, [ "testonly" ]) |
| 60 visibility = [ ":$final_target_name" ] | 60 visibility = [ ":$final_target_name" ] |
| 61 sources = [ | 61 sources = [ |
| 62 "tables.json", | 62 "tables.json", |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 ] | 193 ] |
| 194 deps = [ | 194 deps = [ |
| 195 ":liblouis_nacl", | 195 ":liblouis_nacl", |
| 196 "//native_client_sdk/src/libraries/nacl_io", | 196 "//native_client_sdk/src/libraries/nacl_io", |
| 197 "//ppapi:ppapi_cpp_lib", | 197 "//ppapi:ppapi_cpp_lib", |
| 198 "//ppapi/native_client:ppapi_lib", | 198 "//ppapi/native_client:ppapi_lib", |
| 199 "//third_party/jsoncpp", | 199 "//third_party/jsoncpp", |
| 200 ] | 200 ] |
| 201 } | 201 } |
| 202 } | 202 } |
| OLD | NEW |