BUILD.gn 571 B

1234567891011121314151617181920212223
  1. # Copyright 2019 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. import("//third_party/protobuf/proto_library.gni")
  5. assert(is_chromeos, "Non-ChromeOS builds cannot depend on //chromeos")
  6. component("machine_learning") {
  7. defines = [ "IS_MACHINE_LEARNING_IMPL" ]
  8. deps = [
  9. "//base",
  10. "//dbus",
  11. ]
  12. sources = [
  13. "fake_machine_learning_client.cc",
  14. "fake_machine_learning_client.h",
  15. "machine_learning_client.cc",
  16. "machine_learning_client.h",
  17. ]
  18. }