Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(521)

Side by Side Diff: third_party/liblouis/BUILD.gn

Issue 1682833002: Fix liblouis GN build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: relative to . Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698