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

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

Issue 592353003: [Easy Unlock] Add a convenience test target for rapid iteration. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 months 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
« no previous file with comments | « no previous file | components/proximity_auth/run_all_unittests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 static_library("proximity_auth") { 5 static_library("proximity_auth") {
6 sources = [ 6 sources = [
7 "bluetooth_util.cc", 7 "bluetooth_util.cc",
8 "bluetooth_util_chromeos.cc", 8 "bluetooth_util_chromeos.cc",
9 "bluetooth_util.h", 9 "bluetooth_util.h",
10 "connection.cc", 10 "connection.cc",
(...skipping 20 matching lines...) Expand all
31 "wire_message_unittest.cc", 31 "wire_message_unittest.cc",
32 ] 32 ]
33 33
34 deps = [ 34 deps = [
35 ":proximity_auth", 35 ":proximity_auth",
36 "//base/test:test_support", 36 "//base/test:test_support",
37 "//testing/gmock", 37 "//testing/gmock",
38 "//testing/gtest", 38 "//testing/gtest",
39 ] 39 ]
40 } 40 }
41
42 # Note: This is a convenience target for ease of rapid iteration during
43 # development. It is not executed on any try or build bots.
44 test("proximity_auth_unittests") {
45 sources = [
46 "run_all_unittests.cc",
47 ]
48
49 deps = [
50 ":unit_tests",
51 ]
52 }
OLDNEW
« no previous file with comments | « no previous file | components/proximity_auth/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698