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

Unified Diff: chrome/utility/BUILD.gn

Issue 754223003: gn format //chrome (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update for multiline output Created 6 years 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 | « chrome/test/chromedriver/test/webview_shell/BUILD.gn ('k') | chrome/version.gni » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/utility/BUILD.gn
diff --git a/chrome/utility/BUILD.gn b/chrome/utility/BUILD.gn
index e2ad7f046258f535f7228a1de59fc61f486c0f0d..7b8e1d04006164509f02e31981fa09bb77b7e3b5 100644
--- a/chrome/utility/BUILD.gn
+++ b/chrome/utility/BUILD.gn
@@ -5,11 +5,10 @@
import("//build/config/crypto.gni")
import("//build/config/features.gni")
-gypi_values = exec_script(
- "//build/gypi_to_gn.py",
- [ rebase_path("../chrome_utility.gypi") ],
- "scope",
- [ "../chrome_utility.gypi" ])
+gypi_values = exec_script("//build/gypi_to_gn.py",
+ [ rebase_path("../chrome_utility.gypi") ],
+ "scope",
+ [ "../chrome_utility.gypi" ])
static_library("utility") {
sources = rebase_path(gypi_values.chrome_utility_sources, ".", "..")
@@ -31,37 +30,40 @@ static_library("utility") {
]
if (!is_android) {
- sources += rebase_path(gypi_values.chrome_utility_importer_sources,
- ".", "..")
+ sources +=
+ rebase_path(gypi_values.chrome_utility_importer_sources, ".", "..")
}
if (enable_extensions) {
deps += [
"//chrome/common/extensions/api",
"//extensions/utility",
+
#"//third_party/libexif", TODO(GYP)
]
- public_deps += [
- "//chrome/common/extensions/api",
- ]
+ public_deps += [ "//chrome/common/extensions/api" ]
- sources += rebase_path(gypi_values.chrome_utility_extensions_sources,
- ".", "..")
- sources += rebase_path(gypi_values.chrome_utility_shared_media_sources,
- ".", "..")
+ sources +=
+ rebase_path(gypi_values.chrome_utility_extensions_sources, ".", "..")
+ sources +=
+ rebase_path(gypi_values.chrome_utility_shared_media_sources, ".", "..")
if (is_win || is_mac) {
- sources += rebase_path(
- gypi_values.chrome_utility_win_mac_media_gallery_sources, ".", "..")
+ sources +=
+ rebase_path(gypi_values.chrome_utility_win_mac_media_gallery_sources,
+ ".",
+ "..")
deps += [ "//components/wifi" ]
} else {
sources += [ "image_writer/image_writer_stub.cc" ]
}
if (is_mac) {
- sources += rebase_path(gypi_values.chrome_utility_mac_media_gallery_sources,
- ".", "..")
+ sources +=
+ rebase_path(gypi_values.chrome_utility_mac_media_gallery_sources,
+ ".",
+ "..")
}
}
« no previous file with comments | « chrome/test/chromedriver/test/webview_shell/BUILD.gn ('k') | chrome/version.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698