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

Unified Diff: chrome/BUILD.gn

Issue 1145243006: Port chromevox build to GN. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@externs
Patch Set: Workaround hardlink related spuroius rebuild issue by using a stamp file (not ideal). Created 5 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/secondary/tools/grit/grit_rule.gni ('k') | chrome/browser/resources/chromeos/braille_ime/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/BUILD.gn
diff --git a/chrome/BUILD.gn b/chrome/BUILD.gn
index 74039425cb43958c741c926c3aea86b4a5ccec27..b2282d3547bb2b0d752eb76c41f56d2d4518c6bf 100644
--- a/chrome/BUILD.gn
+++ b/chrome/BUILD.gn
@@ -425,14 +425,8 @@ group("extra_resources") {
]
}
- if (enable_chromevox_next) {
- deps += [
- #'browser/resources/chromeos/chromevox2/chromevox.gyp:chromevox2', TODO(GYP)
- ]
- } else {
- deps += [
- #'browser/resources/chromeos/chromevox/chromevox.gyp:chromevox', TODO(GYP)
- ]
+ if (is_chromeos) {
+ deps += [ "//chrome/browser/resources/chromeos/chromevox" ]
}
if (enable_extensions) {
@@ -715,7 +709,8 @@ template("chrome_repack_material_percent") {
percent = invoker.percent
repack_name = "${target_name}_repack"
- repack_output_file = "$root_gen_dir/repack/chrome_material_${percent}_percent.pak"
+ repack_output_file =
+ "$root_gen_dir/repack/chrome_material_${percent}_percent.pak"
copy_name = target_name
« no previous file with comments | « build/secondary/tools/grit/grit_rule.gni ('k') | chrome/browser/resources/chromeos/braille_ime/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698