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

Unified Diff: chrome/browser/resources/chromeos/braille_ime/BUILD.gn

Issue 2247353004: GN files for running Closure Compiler (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix typo 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | third_party/closure_compiler/BUILD.gn » ('j') | third_party/closure_compiler/compile_js2.gni » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/chromeos/braille_ime/BUILD.gn
diff --git a/chrome/browser/resources/chromeos/braille_ime/BUILD.gn b/chrome/browser/resources/chromeos/braille_ime/BUILD.gn
index 092cbce3bc1a7d61cb869c4cb6f49362ef09dd05..1c364ca9d5fb273e02ce0a3294504ef529b25b38 100644
--- a/chrome/browser/resources/chromeos/braille_ime/BUILD.gn
+++ b/chrome/browser/resources/chromeos/braille_ime/BUILD.gn
@@ -2,13 +2,32 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-assert(is_chromeos)
+import("//third_party/closure_compiler/compile_js2.gni")
-copy("braille_ime_manifest") {
- sources = [
- "manifest.json",
+if (is_chromeos) {
+ copy("braille_ime_manifest") {
+ source_files = [ "manifest.json" ]
+ outputs = [
+ "$root_out_dir/resources/chromeos/braille_ime/manifest.json",
+ ]
+ }
+}
+
+compile_js("compile_externs") {
+ source_files = [ "externs.js" ]
+}
+
+compile_js("compile_braille_ime") {
+ source_files = [ "braille_ime.js" ]
+ externs = [ "chrome_extensions.js" ]
+ deps = [
+ ":compile_externs",
]
- outputs = [
- "$root_out_dir/resources/chromeos/braille_ime/manifest.json",
+}
+
+compile_js("compile_main") {
+ source_files = [ "main.js" ]
+ deps = [
+ ":compile_braille_ime",
]
}
« no previous file with comments | « no previous file | third_party/closure_compiler/BUILD.gn » ('j') | third_party/closure_compiler/compile_js2.gni » ('J')

Powered by Google App Engine
This is Rietveld 408576698