| OLD | NEW |
| 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 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 sources = gypi_values.chromeos_test_sources | 172 sources = gypi_values.chromeos_test_sources |
| 173 if (use_binder) { | 173 if (use_binder) { |
| 174 if (current_cpu == "arm" || current_cpu == "x86") { | 174 if (current_cpu == "arm" || current_cpu == "x86") { |
| 175 defines += [ "BINDER_IPC_32BIT" ] | 175 defines += [ "BINDER_IPC_32BIT" ] |
| 176 } | 176 } |
| 177 sources += gypi_values.chromeos_binder_test_sources | 177 sources += gypi_values.chromeos_binder_test_sources |
| 178 } | 178 } |
| 179 | 179 |
| 180 data = [ | 180 data = [ |
| 181 "test/data/", | 181 "test/data/", |
| 182 "//net/data/", | |
| 183 ] | 182 ] |
| 184 } | 183 } |
| 185 | 184 |
| 186 proto_library("power_manager_proto") { | 185 proto_library("power_manager_proto") { |
| 187 sources = [ | 186 sources = [ |
| 188 "//third_party/cros_system_api/dbus/power_manager/input_event.proto", | 187 "//third_party/cros_system_api/dbus/power_manager/input_event.proto", |
| 189 "//third_party/cros_system_api/dbus/power_manager/peripheral_battery_status.
proto", | 188 "//third_party/cros_system_api/dbus/power_manager/peripheral_battery_status.
proto", |
| 190 "//third_party/cros_system_api/dbus/power_manager/policy.proto", | 189 "//third_party/cros_system_api/dbus/power_manager/policy.proto", |
| 191 "//third_party/cros_system_api/dbus/power_manager/power_supply_properties.pr
oto", | 190 "//third_party/cros_system_api/dbus/power_manager/power_supply_properties.pr
oto", |
| 192 "//third_party/cros_system_api/dbus/power_manager/suspend.proto", | 191 "//third_party/cros_system_api/dbus/power_manager/suspend.proto", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 204 proto_out_dir = "chromeos/dbus/cryptohome" | 203 proto_out_dir = "chromeos/dbus/cryptohome" |
| 205 } | 204 } |
| 206 | 205 |
| 207 proto_library("cryptohome_signkey_proto") { | 206 proto_library("cryptohome_signkey_proto") { |
| 208 sources = [ | 207 sources = [ |
| 209 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", | 208 "//third_party/cros_system_api/dbus/cryptohome/signed_secret.proto", |
| 210 ] | 209 ] |
| 211 | 210 |
| 212 proto_out_dir = "chromeos/cryptohome" | 211 proto_out_dir = "chromeos/cryptohome" |
| 213 } | 212 } |
| OLD | NEW |