OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 { | 5 { |
6 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
| 10 { |
| 11 'target_name': 'ios_web_app', |
| 12 'type': 'static_library', |
| 13 'include_dirs': [ |
| 14 '../..', |
| 15 ], |
| 16 'dependencies': [ |
| 17 'ios_web', |
| 18 'ios_web_thread', |
| 19 '../../base/base.gyp:base', |
| 20 '../../base/base.gyp:base_i18n', |
| 21 '../../crypto/crypto.gyp:crypto', |
| 22 '../../net/net.gyp:net', |
| 23 '../../ui/base/ui_base.gyp:ui_base', |
| 24 '../../ui/gfx/gfx.gyp:gfx', |
| 25 '../../ui/gfx/gfx.gyp:gfx_geometry', |
| 26 ], |
| 27 'sources': [ |
| 28 'app/web_main.mm', |
| 29 'app/web_main_loop.h', |
| 30 'app/web_main_loop.mm', |
| 31 'app/web_main_runner.h', |
| 32 'app/web_main_runner.mm', |
| 33 'public/app/web_main.h', |
| 34 'public/app/web_main_delegate.h', |
| 35 'public/app/web_main_parts.h', |
| 36 'public/app/web_main_parts.mm', |
| 37 ], |
| 38 }, |
10 # Note: any embedder using ios_web will for now need to include either | 39 # Note: any embedder using ios_web will for now need to include either |
11 # ios_web_thread (any new embedder) or ios_web_content_thread_shim (Chrome). | 40 # ios_web_thread (any new embedder) or ios_web_content_thread_shim (Chrome). |
12 # This will become unnecessary once Chrome switches to using ios_web_thread, | 41 # This will become unnecessary once Chrome switches to using ios_web_thread, |
13 # at which point that will be folded into this target. | 42 # at which point that will be folded into this target. |
14 { | 43 { |
15 'target_name': 'ios_web', | 44 'target_name': 'ios_web', |
16 'type': 'static_library', | 45 'type': 'static_library', |
17 'include_dirs': [ | 46 'include_dirs': [ |
18 '../..', | 47 '../..', |
19 ], | 48 ], |
(...skipping 476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
496 'dependencies': [ | 525 'dependencies': [ |
497 '../../base/base.gyp:base' | 526 '../../base/base.gyp:base' |
498 ], | 527 ], |
499 'sources': [ | 528 'sources': [ |
500 'public/user_agent.h', | 529 'public/user_agent.h', |
501 'public/user_agent.mm', | 530 'public/user_agent.mm', |
502 ], | 531 ], |
503 }, | 532 }, |
504 ], | 533 ], |
505 } | 534 } |
OLD | NEW |