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

Side by Side Diff: chromeos/BUILD.gn

Issue 1186293003: Implement HasInputDevices in CrasAudioManager (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address the comments and add unittest Created 5 years, 6 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/allocator.gni") 5 import("//build/config/allocator.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 import("//third_party/protobuf/proto_library.gni") 8 import("//third_party/protobuf/proto_library.gni")
9 9
10 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos") 10 assert(is_chromeos, "Non-ChromeOS builds must not depend on //chromeos")
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
129 ] 129 ]
130 deps = [ 130 deps = [
131 "//base:prefs_test_support", 131 "//base:prefs_test_support",
132 "//base/test:run_all_unittests", 132 "//base/test:run_all_unittests",
133 "//base/test:test_support", 133 "//base/test:test_support",
134 "//components/onc", 134 "//components/onc",
135 "//crypto", 135 "//crypto",
136 "//crypto:test_support", 136 "//crypto:test_support",
137 "//dbus:test_support", 137 "//dbus:test_support",
138 "//google_apis", 138 "//google_apis",
139 "//media",
139 "//net", 140 "//net",
140 "//net:test_support", 141 "//net:test_support",
141 "//testing/gmock", 142 "//testing/gmock",
142 "//testing/gtest", 143 "//testing/gtest",
143 "//third_party/icu", 144 "//third_party/icu",
144 "//url", 145 "//url",
145 ":cryptohome_proto", 146 ":cryptohome_proto",
146 ":power_manager_proto", 147 ":power_manager_proto",
147 ":test_support", 148 ":test_support",
148 ] 149 ]
(...skipping 24 matching lines...) Expand all
173 proto_out_dir = "chromeos/dbus/cryptohome" 174 proto_out_dir = "chromeos/dbus/cryptohome"
174 } 175 }
175 176
176 proto_library("cryptohome_signkey_proto") { 177 proto_library("cryptohome_signkey_proto") {
177 sources = [ 178 sources = [
178 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", 179 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto",
179 ] 180 ]
180 181
181 proto_out_dir = "chromeos/cryptohome" 182 proto_out_dir = "chromeos/cryptohome"
182 } 183 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698