| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 source_set("app") { | 5 source_set("app") { |
| 6 visibility = [ "//ios/web/public/app" ] | 6 visibility = [ "//ios/web/public/app" ] |
| 7 | 7 |
| 8 sources = [ | 8 sources = [ |
| 9 "web_main.mm", | 9 "web_main.mm", |
| 10 "web_main_loop.h", | 10 "web_main_loop.h", |
| 11 "web_main_loop.mm", | 11 "web_main_loop.mm", |
| 12 "web_main_runner.mm", | 12 "web_main_runner.mm", |
| 13 ] | 13 ] |
| 14 | 14 |
| 15 configs += [ "//build/config/compiler:enable_arc" ] |
| 16 |
| 15 deps = [ | 17 deps = [ |
| 16 "//base", | 18 "//base", |
| 17 "//base:i18n", | 19 "//base:i18n", |
| 18 "//crypto", | 20 "//crypto", |
| 19 "//ios/web", | 21 "//ios/web", |
| 20 "//net", | 22 "//net", |
| 21 "//ui/base", | 23 "//ui/base", |
| 22 "//ui/gfx", | 24 "//ui/gfx", |
| 23 "//ui/gfx/geometry", | 25 "//ui/gfx/geometry", |
| 24 ] | 26 ] |
| 25 | 27 |
| 26 libs = [ | 28 libs = [ |
| 27 "Foundation.framework", | 29 "Foundation.framework", |
| 28 "UIKit.framework", | 30 "UIKit.framework", |
| 29 ] | 31 ] |
| 30 } | 32 } |
| OLD | NEW |