Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2015 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("app") { | |
| 6 visibility = [ "//ios/web/public/app" ] | |
| 7 | |
| 8 sources = [ | |
| 9 "web_main.mm", | |
| 10 "web_main_loop.h", | |
| 11 "web_main_loop.mm", | |
| 12 "web_main_runner.h", | |
| 13 "web_main_runner.mm", | |
| 14 ] | |
| 15 | |
| 16 deps = [ | |
| 17 "//base", | |
| 18 "//base:i18n", | |
| 19 "//crypto", | |
| 20 "//ios/web", | |
| 21 "//net", | |
| 22 "//ui/base", | |
| 23 "//ui/gfx", | |
| 24 "//ui/gfx/geometry", | |
| 25 ] | |
| 26 | |
| 27 libs = [ | |
| 28 "Foundation.framework", | |
| 29 "UIKit.framework", | |
| 30 ] | |
| 31 } | |
| OLD | NEW |