diff options
author | agrieve <agrieve@chromium.org> | 2015-11-20 11:53:28 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-11-20 19:54:12 +0000 |
commit | d7a71c88990b6788ceaf1ec9ee518099709ff3fd (patch) | |
tree | dd1a1e2a0ef6a80b09e20e8efb7c9cdc5eace718 /components/gcm_driver | |
parent | 505f20a95df63e77c8207a7d5a19f5719f3dc3c6 (diff) | |
download | chromium_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 'components/gcm_driver')
-rw-r--r-- | components/gcm_driver/BUILD.gn | 2 | ||||
-rw-r--r-- | components/gcm_driver/crypto/BUILD.gn | 4 | ||||
-rw-r--r-- | components/gcm_driver/instance_id/BUILD.gn | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/components/gcm_driver/BUILD.gn b/components/gcm_driver/BUILD.gn index 46c35eb..65ea0e4 100644 --- a/components/gcm_driver/BUILD.gn +++ b/components/gcm_driver/BUILD.gn @@ -58,7 +58,6 @@ static_library("gcm_driver") { ] deps = [ - "crypto", "//base", "//components/gcm_driver/common", "//components/os_crypt", @@ -67,6 +66,7 @@ static_library("gcm_driver") { "//net", "//sync/protocol", "//url:url", + "crypto", ] if (is_chromeos) { diff --git a/components/gcm_driver/crypto/BUILD.gn b/components/gcm_driver/crypto/BUILD.gn index 95dc412..d1b7f30 100644 --- a/components/gcm_driver/crypto/BUILD.gn +++ b/components/gcm_driver/crypto/BUILD.gn @@ -24,12 +24,12 @@ source_set("crypto") { ] deps = [ - "proto", "//base", + "//components/leveldb_proto", "//crypto", "//crypto:platform", - "//components/leveldb_proto", "//third_party/protobuf:protobuf_lite", + "proto", ] if (use_openssl) { diff --git a/components/gcm_driver/instance_id/BUILD.gn b/components/gcm_driver/instance_id/BUILD.gn index 4b578d3..4da83de 100644 --- a/components/gcm_driver/instance_id/BUILD.gn +++ b/components/gcm_driver/instance_id/BUILD.gn @@ -15,8 +15,8 @@ source_set("instance_id") { deps = [ "//base", - "//crypto", "//components/gcm_driver", + "//crypto", ] if (is_android) { |