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

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

Issue 1145243006: Port chromevox build to GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@externs
Patch Set: Add depfile_dir to grit_rule Created 5 years, 6 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
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 if (is_chromeos) {
6 import("//chrome/browser/resources/chromeos/chromevox/chromevox.gni")
7
8 group("chromevox_third_party_resources") {
9 deps = [
10 ":chromevox_third_party_background_resources",
11 ":chromevox_third_party_injected_resources",
12 ]
13 }
14
15 copy("chromevox_third_party_background_resources") {
16 sources = [
17 "chromevox/background/chrome_shared2.css",
18 "chromevox/background/options.css",
19 "chromevox/background/options_widgets.css",
20 ]
21 outputs = [
22 "$chromevox_out_dir/chromevox/background/{{source_file_part}}",
23 ]
24 }
25
26 copy("chromevox_third_party_injected_resources") {
27 sources = [
28 "chromevox/injected/mathjax.js",
29 "chromevox/injected/mathjax_external_util.js",
30 ]
31 outputs = [
32 "$chromevox_out_dir/chromevox/injected/{{source_file_part}}",
33 ]
34 }
35 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698