mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 22:36:09 +03:00
24 lines
686 B
Plaintext
24 lines
686 B
Plaintext
# Copyright 2016 The Chromium Authors. All rights reserved.
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
source_set("sessions") {
|
|
configs += [ "//build/config/compiler:enable_arc" ]
|
|
sources = [
|
|
"ios_chrome_local_session_event_router.h",
|
|
"ios_chrome_local_session_event_router.mm",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//components/history/core/browser",
|
|
"//components/keyed_service/core",
|
|
"//components/sync",
|
|
"//components/sync_sessions",
|
|
"//ios/chrome/browser",
|
|
"//ios/chrome/browser/browser_state",
|
|
"//ios/chrome/browser/history",
|
|
"//ios/chrome/browser/sync/glue",
|
|
"//ios/web",
|
|
]
|
|
}
|