summaryrefslogtreecommitdiffstats
path: root/chromeos
diff options
context:
space:
mode:
authoragrieve <agrieve@chromium.org>2015-11-20 11:53:28 -0800
committerCommit bot <commit-bot@chromium.org>2015-11-20 19:54:12 +0000
commitd7a71c88990b6788ceaf1ec9ee518099709ff3fd (patch)
treedd1a1e2a0ef6a80b09e20e8efb7c9cdc5eace718 /chromeos
parent505f20a95df63e77c8207a7d5a19f5719f3dc3c6 (diff)
downloadchromium_src-d7a71c88990b6788ceaf1ec9ee518099709ff3fd.zip
chromium_src-d7a71c88990b6788ceaf1ec9ee518099709ff3fd.tar.gz
chromium_src-d7a71c88990b6788ceaf1ec9ee518099709ff3fd.tar.bz2
Run gn --format over all .gn files
The recent formatter alphebetizing change is causing a lot of noise in code reviews. Figured it'd be worth a clean-up CL. Exact command I ran: find . -name "*.gn*" -exec gn format --in-place "{}" \; TBR=ddorwin@chromium.org BUG=554928 CQ_INCLUDE_TRYBOTS=tryserver.blink:linux_blink_rel Review URL: https://codereview.chromium.org/1464873002 Cr-Commit-Position: refs/heads/master@{#360891}
Diffstat (limited to 'chromeos')
-rw-r--r--chromeos/BUILD.gn14
1 files changed, 7 insertions, 7 deletions
diff --git a/chromeos/BUILD.gn b/chromeos/BUILD.gn
index 268a5b2..b25c21a 100644
--- a/chromeos/BUILD.gn
+++ b/chromeos/BUILD.gn
@@ -20,14 +20,16 @@ component("chromeos") {
"//dbus",
]
deps = [
+ ":cryptohome_proto",
+ ":power_manager_proto",
"//base",
"//base:i18n",
"//base:prefs",
"//base/third_party/dynamic_annotations",
"//chromeos/ime:gencode",
"//components/device_event_log",
- "//components/policy/proto",
"//components/onc",
+ "//components/policy/proto",
"//components/proxy_config",
"//components/signin/core/account_id",
"//crypto",
@@ -37,8 +39,6 @@ component("chromeos") {
"//third_party/libxml",
"//third_party/protobuf:protobuf_lite",
"//url",
- ":cryptohome_proto",
- ":power_manager_proto",
]
sources = gypi_values.chromeos_sources
defines = [ "CHROMEOS_IMPLEMENTATION" ]
@@ -109,10 +109,10 @@ static_library("test_support_without_gmock") {
testonly = true
configs += [ "//build/config/linux:dbus" ]
deps = [
- "//crypto",
":chromeos",
":cryptohome_proto",
":power_manager_proto",
+ "//crypto",
]
sources = [
"dbus/fake_cros_disks_client.cc",
@@ -132,6 +132,9 @@ test("chromeos_unittests") {
"//net/third_party/nss/ssl:ssl_config",
]
deps = [
+ ":cryptohome_proto",
+ ":power_manager_proto",
+ ":test_support",
"//base:prefs_test_support",
"//base/test:run_all_unittests",
"//base/test:test_support",
@@ -147,9 +150,6 @@ test("chromeos_unittests") {
"//testing/gtest",
"//third_party/icu",
"//url",
- ":cryptohome_proto",
- ":power_manager_proto",
- ":test_support",
]
sources = gypi_values.chromeos_test_sources
if (use_allocator != "none") {