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

Side by Side Diff: components/proximity_auth/cryptauth/BUILD.gn

Issue 1439973004: [PoC] Reformat all BUILD.gn and *.gni files with new gn. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-sort-deps
Patch Set: Synchronize with new version of gn patch Created 5 years, 1 month 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 unified diff | Download patch
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("cryptauth") { 5 source_set("cryptauth") {
6 sources = [ 6 sources = [
7 "base64url.cc", 7 "base64url.cc",
8 "base64url.h", 8 "base64url.h",
9 "cryptauth_access_token_fetcher.h", 9 "cryptauth_access_token_fetcher.h",
10 "cryptauth_access_token_fetcher_impl.cc", 10 "cryptauth_access_token_fetcher_impl.cc",
(...skipping 21 matching lines...) Expand all
32 "secure_message_delegate.cc", 32 "secure_message_delegate.cc",
33 "secure_message_delegate.h", 33 "secure_message_delegate.h",
34 "sync_scheduler.cc", 34 "sync_scheduler.cc",
35 "sync_scheduler.h", 35 "sync_scheduler.h",
36 "sync_scheduler_impl.cc", 36 "sync_scheduler_impl.cc",
37 "sync_scheduler_impl.h", 37 "sync_scheduler_impl.h",
38 ] 38 ]
39 39
40 deps = [ 40 deps = [
41 "//base", 41 "//base",
42 "//crypto",
43 "//components/gcm_driver", 42 "//components/gcm_driver",
44 "//components/proximity_auth/logging", 43 "//components/proximity_auth/logging",
44 "//crypto",
45 "//google_apis", 45 "//google_apis",
46 "//net", 46 "//net",
47 ] 47 ]
48 48
49 public_deps = [ 49 public_deps = [
50 "proto", 50 "proto",
51 ] 51 ]
52 } 52 }
53 53
54 source_set("test_support") { 54 source_set("test_support") {
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 ":cryptauth", 95 ":cryptauth",
96 ":test_support", 96 ":test_support",
97 "//base:prefs_test_support", 97 "//base:prefs_test_support",
98 "//base/test:test_support", 98 "//base/test:test_support",
99 "//components/gcm_driver:test_support", 99 "//components/gcm_driver:test_support",
100 "//google_apis:test_support", 100 "//google_apis:test_support",
101 "//net:test_support", 101 "//net:test_support",
102 "//testing/gtest", 102 "//testing/gtest",
103 ] 103 ]
104 } 104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698