BUILD.gn 477 B

12345678910111213141516171819
  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
  3. # found in the LICENSE file.
  4. component("core") {
  5. sources = [
  6. "session_manager.cc",
  7. "session_manager.h",
  8. "session_manager_observer.h",
  9. ]
  10. deps = [
  11. "//base",
  12. "//components/account_id",
  13. "//components/session_manager:base",
  14. "//components/user_manager",
  15. "//skia",
  16. ]
  17. defines = [ "SESSION_IMPLEMENTATION" ]
  18. }