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

Side by Side Diff: chromeos/BUILD.gn

Issue 2297193007: mash: Provide a fake chromeos StatisticsProvider in ash (Closed)
Patch Set: . Created 4 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
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 import("//build/config/ui.gni") 5 import("//build/config/ui.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 import("//third_party/protobuf/proto_library.gni") 7 import("//third_party/protobuf/proto_library.gni")
8 8
9 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") 9 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos")
10 10
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
110 "login/auth/mock_url_fetchers.cc", 110 "login/auth/mock_url_fetchers.cc",
111 "login/auth/mock_url_fetchers.h", 111 "login/auth/mock_url_fetchers.h",
112 "network/fake_network_device_handler.cc", 112 "network/fake_network_device_handler.cc",
113 "network/fake_network_device_handler.h", 113 "network/fake_network_device_handler.h",
114 "network/mock_managed_network_configuration_handler.cc", 114 "network/mock_managed_network_configuration_handler.cc",
115 "network/mock_managed_network_configuration_handler.h", 115 "network/mock_managed_network_configuration_handler.h",
116 "network/mock_network_device_handler.cc", 116 "network/mock_network_device_handler.cc",
117 "network/mock_network_device_handler.h", 117 "network/mock_network_device_handler.h",
118 "network/onc/onc_test_utils.cc", 118 "network/onc/onc_test_utils.cc",
119 "network/onc/onc_test_utils.h", 119 "network/onc/onc_test_utils.h",
120 "system/fake_statistics_provider.cc",
121 "system/fake_statistics_provider.h",
122 ] 120 ]
123 } 121 }
124 122
125 static_library("test_support_without_gmock") { 123 static_library("test_support_without_gmock") {
126 testonly = true 124 testonly = true
127 configs += [ "//build/config/linux/dbus" ] 125 configs += [ "//build/config/linux/dbus" ]
128 deps = [ 126 deps = [
129 ":chromeos", 127 ":chromeos",
130 ":cryptohome_proto", 128 ":cryptohome_proto",
131 ":power_manager_proto", 129 ":power_manager_proto",
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 proto_out_dir = "chromeos/dbus/cryptohome" 201 proto_out_dir = "chromeos/dbus/cryptohome"
204 } 202 }
205 203
206 proto_library("cryptohome_signkey_proto") { 204 proto_library("cryptohome_signkey_proto") {
207 sources = [ 205 sources = [
208 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", 206 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto",
209 ] 207 ]
210 208
211 proto_out_dir = "chromeos/cryptohome" 209 proto_out_dir = "chromeos/cryptohome"
212 } 210 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698