summaryrefslogtreecommitdiffstats
path: root/sync
diff options
context:
space:
mode:
authorscottmg <scottmg@chromium.org>2014-12-03 15:27:24 -0800
committerCommit bot <commit-bot@chromium.org>2014-12-03 23:27:41 +0000
commit34fb7e5919ed42dc800acf3961fe6a2bf9e7d6eb (patch)
treedc6a3e4de8e3093074390b933e9d4cb0e79070f5 /sync
parente00b5de3d64b4ea58797b13f42039956a5b3ddec (diff)
downloadchromium_src-34fb7e5919ed42dc800acf3961fe6a2bf9e7d6eb.zip
chromium_src-34fb7e5919ed42dc800acf3961fe6a2bf9e7d6eb.tar.gz
chromium_src-34fb7e5919ed42dc800acf3961fe6a2bf9e7d6eb.tar.bz2
gn format // (the rest, except mojo)
Excluded mojo because I think that needs to happen on the other side. At gn --version = 306668 for which roll is in CQ. R=brettw@chromium.org TBR=scherkus@chromium.org BUG=348474 Review URL: https://codereview.chromium.org/774353003 Cr-Commit-Position: refs/heads/master@{#306708}
Diffstat (limited to 'sync')
-rw-r--r--sync/BUILD.gn17
-rw-r--r--sync/internal_api/attachments/proto/BUILD.gn1
2 files changed, 7 insertions, 11 deletions
diff --git a/sync/BUILD.gn b/sync/BUILD.gn
index 67b12b3..65af3de 100644
--- a/sync/BUILD.gn
+++ b/sync/BUILD.gn
@@ -414,9 +414,7 @@ source_set("sync_core") {
if (is_chromeos) {
# Required by get_session_name.cc on Chrome OS.
- deps += [
- "//chromeos"
- ]
+ deps += [ "//chromeos" ]
}
defines = [ "SYNC_IMPLEMENTATION" ]
@@ -656,9 +654,7 @@ test("sync_unit_tests") {
if (is_chromeos) {
# Required by get_session_name_unittest.cc on Chrome OS.
- deps += [
- "//chromeos"
- ]
+ deps += [ "//chromeos" ]
}
if (is_ios) {
@@ -727,7 +723,6 @@ static_library("test_support_sync_testserver") {
]
deps = [
":sync",
-
# The sync test server uses Python modules generated by the sync protos.
# '../third_party/protobuf/protobuf.gyp:py_proto', # TODO(GYP)
]
@@ -766,7 +761,9 @@ if (!is_ios) {
# GYP version: sync/sync_tests.gypi:run_sync_testserver
executable("run_sync_testserver") {
testonly = true
- sources = [ "tools/testserver/run_sync_testserver.cc" ]
+ sources = [
+ "tools/testserver/run_sync_testserver.cc",
+ ]
deps = [
"//base",
@@ -786,7 +783,7 @@ if (is_android) {
testonly = true
jni_package = "sync/test/fake_server"
sources = [
- "//chrome/android/sync_shell/javatests/src/chromium/chrome/browser/sync/FakeServerHelper.java"
+ "//chrome/android/sync_shell/javatests/src/chromium/chrome/browser/sync/FakeServerHelper.java",
]
}
@@ -819,7 +816,7 @@ if (is_android) {
# GYP: //sync/sync_tests.gypi:sync_unit_tests_apk
unittest_apk("sync_unit_tests_apk") {
unittests_dep = ":sync_unit_tests"
- deps = [
+ deps = [
":sync_unit_tests",
]
}
diff --git a/sync/internal_api/attachments/proto/BUILD.gn b/sync/internal_api/attachments/proto/BUILD.gn
index 0e02b01..3408c38 100644
--- a/sync/internal_api/attachments/proto/BUILD.gn
+++ b/sync/internal_api/attachments/proto/BUILD.gn
@@ -12,5 +12,4 @@ proto_library("proto") {
cc_include = "sync/base/sync_export.h"
defines = [ "SYNC_IMPLEMENTATION" ]
-
}