Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 } | |
| OLD | NEW |