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

Side by Side Diff: chrome/third_party/chromevox/BUILD.gn

Issue 2237233002: Clean up GN template code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: chromevox Created 4 years, 4 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 | « chrome/browser/resources/chromeos/chromevox/chromevox.gni ('k') | 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 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 if (is_chromeos) { 5 assert(is_chromeos)
6 import("//chrome/browser/resources/chromeos/chromevox/chromevox.gni")
7 6
8 chromevox_out_dir = "$root_out_dir/resources/chromeos/chromevox" 7 chromevox_out_dir = "$root_out_dir/resources/chromeos/chromevox"
9 8
10 group("chromevox_third_party_resources") { 9 group("chromevox_third_party_resources") {
11 deps = [ 10 deps = [
12 ":chromevox_third_party_background_resources", 11 ":chromevox_third_party_background_resources",
13 ":chromevox_third_party_injected_resources", 12 ":chromevox_third_party_injected_resources",
14 ] 13 ]
15 } 14 }
16 15
17 copy("chromevox_third_party_background_resources") { 16 copy("chromevox_third_party_background_resources") {
18 sources = [ 17 sources = [
19 "chromevox/background/chrome_shared2.css", 18 "chromevox/background/chrome_shared2.css",
20 "chromevox/background/options.css", 19 "chromevox/background/options.css",
21 "chromevox/background/options_widgets.css", 20 "chromevox/background/options_widgets.css",
22 ] 21 ]
23 outputs = [ 22 outputs = [
24 "$chromevox_out_dir/chromevox/background/{{source_file_part}}", 23 "$chromevox_out_dir/chromevox/background/{{source_file_part}}",
25 ] 24 ]
26 } 25 }
27 26
28 copy("chromevox_third_party_injected_resources") { 27 copy("chromevox_third_party_injected_resources") {
29 sources = [ 28 sources = [
30 "chromevox/injected/mathjax.js", 29 "chromevox/injected/mathjax.js",
31 "chromevox/injected/mathjax_external_util.js", 30 "chromevox/injected/mathjax_external_util.js",
32 ] 31 ]
33 outputs = [ 32 outputs = [
34 "$chromevox_out_dir/chromevox/injected/{{source_file_part}}", 33 "$chromevox_out_dir/chromevox/injected/{{source_file_part}}",
35 ] 34 ]
36 }
37 } 35 }
OLDNEW
« no previous file with comments | « chrome/browser/resources/chromeos/chromevox/chromevox.gni ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698