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

Side by Side Diff: ios/clean/chrome/browser/ui/overlay_service/BUILD.gn

Issue 2921833002: [iOS Clean] Created OverlayService.
Patch Set: rebase & Mark's comments Created 3 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
(Empty)
1 # Copyright 2016 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
5 source_set("overlay_service") {
marq (ping after 24h) 2017/06/23 10:42:01 Nit: I preferred just calling this directory 'over
6 public_deps = [
7 ":overlay_service_headers",
8 ]
9
10 deps = [
11 "//ios/clean/chrome/browser/ui/overlay_service/internal",
12 ]
13 }
14
15 source_set("overlay_service_headers") {
16 sources = [
17 "browser_coordinator+overlay_support.h",
18 "overlay_service.h",
19 "overlay_service_factory.h",
20 ]
21
22 configs += [ "//build/config/compiler:enable_arc" ]
23
24 deps = [
25 "//base",
26 "//components/keyed_service/core",
27 "//components/keyed_service/ios",
28 "//ios/chrome/browser/browser_state",
29 "//ios/chrome/browser/web_state_list",
30 "//ios/clean/chrome/browser/ui/commands",
31 "//ios/shared/chrome/browser/ui/browser_list",
32 "//ios/shared/chrome/browser/ui/commands",
33 "//ios/shared/chrome/browser/ui/coordinators",
34 "//ios/web",
35 ]
36 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698