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

Unified Diff: components/proximity_auth/BUILD.gn

Issue 1458193002: Flip the CrOS GN release bots to use Ozone. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix target nesting 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/test/chromedriver/BUILD.gn ('k') | mandoline/services/core_services/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/proximity_auth/BUILD.gn
diff --git a/components/proximity_auth/BUILD.gn b/components/proximity_auth/BUILD.gn
index acca3e4f3c644e952d3ae04d3840cf37bcfec01b..86a2a4cb26b15bfeb1cba0f8b21ee989600190a2 100644
--- a/components/proximity_auth/BUILD.gn
+++ b/components/proximity_auth/BUILD.gn
@@ -70,11 +70,11 @@ source_set("proximity_auth") {
]
deps = [
- "cryptauth/proto",
- "logging",
"//base",
"//device/bluetooth",
"//net",
+ "cryptauth/proto",
+ "logging",
]
}
@@ -95,9 +95,9 @@ source_set("test_support") {
]
deps = [
- "cryptauth:test_support",
"//base",
"//testing/gmock",
+ "cryptauth:test_support",
]
}
@@ -128,24 +128,26 @@ source_set("unit_tests") {
deps = [
":proximity_auth",
":test_support",
- "ble:unit_tests",
- "cryptauth:test_support",
- "cryptauth:unit_tests",
- "logging:unit_tests",
"//base/test:test_support",
"//device/bluetooth:mocks",
"//testing/gmock",
"//testing/gtest",
+ "ble:unit_tests",
+ "cryptauth:test_support",
+ "cryptauth:unit_tests",
+ "logging:unit_tests",
]
}
# Note: This is a convenience target for ease of rapid iteration during
# development. It is not executed on any try or build bots.
-test("proximity_auth_unittests") {
- sources = [
- "run_all_unittests.cc",
- ]
- deps = [
- ":unit_tests",
- ]
+if (!is_chromeos) {
+ test("proximity_auth_unittests") {
+ sources = [
+ "run_all_unittests.cc",
+ ]
+ deps = [
+ ":unit_tests",
+ ]
+ }
}
« no previous file with comments | « chrome/test/chromedriver/BUILD.gn ('k') | mandoline/services/core_services/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698