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 { | 10 { |
11 'target_name': 'ios_web', | 11 'target_name': 'ios_web', |
12 'type': 'static_library', | 12 'type': 'static_library', |
13 'include_dirs': [ | 13 'include_dirs': [ |
14 '../..', | 14 '../..', |
15 ], | 15 ], |
16 'dependencies': [ | 16 'dependencies': [ |
17 '../../base/base.gyp:base', | 17 '../../base/base.gyp:base', |
18 '../../content/content.gyp:content_browser', | 18 '../../content/content.gyp:content_browser', |
19 '../../net/net.gyp:net', | 19 '../../net/net.gyp:net', |
20 '../../ui/base/ui_base.gyp:ui_base', | 20 '../../ui/base/ui_base.gyp:ui_base', |
21 '../../ui/gfx/gfx.gyp:gfx', | 21 '../../ui/gfx/gfx.gyp:gfx', |
22 ], | 22 ], |
23 'sources': [ | 23 'sources': [ |
24 'browser_state.cc', | 24 'browser_state.cc', |
| 25 'load_committed_details.cc', |
25 'navigation/navigation_item_impl.h', | 26 'navigation/navigation_item_impl.h', |
26 'navigation/navigation_item_impl.mm', | 27 'navigation/navigation_item_impl.mm', |
27 'public/browser_state.h', | 28 'public/browser_state.h', |
28 'public/favicon_status.cc', | 29 'public/favicon_status.cc', |
29 'public/favicon_status.h', | 30 'public/favicon_status.h', |
| 31 'public/load_committed_details.h', |
30 'public/navigation_item.h', | 32 'public/navigation_item.h', |
31 'public/referrer.h', | 33 'public/referrer.h', |
32 'public/security_style.h', | 34 'public/security_style.h', |
33 'public/ssl_status.cc', | 35 'public/ssl_status.cc', |
34 'public/ssl_status.h', | 36 'public/ssl_status.h', |
| 37 'public/string_util.h', |
35 'public/user_agent.h', | 38 'public/user_agent.h', |
36 'public/user_agent.mm', | 39 'public/user_agent.mm', |
| 40 'public/web_state/web_state_observer.h', |
37 'public/web_thread.h', | 41 'public/web_thread.h', |
| 42 'string_util.cc', |
| 43 'web_state/web_state_observer.cc', |
38 'web_thread.cc', | 44 'web_thread.cc', |
39 ], | 45 ], |
40 }, | 46 }, |
41 { | 47 { |
42 'target_name': 'test_support_ios_web', | 48 'target_name': 'test_support_ios_web', |
43 'type': 'static_library', | 49 'type': 'static_library', |
44 'dependencies': [ | 50 'dependencies': [ |
45 'ios_web', | 51 'ios_web', |
46 ], | 52 ], |
47 'include_dirs': [ | 53 'include_dirs': [ |
48 '../..', | 54 '../..', |
49 ], | 55 ], |
50 'sources': [ | 56 'sources': [ |
51 'public/test/test_browser_state.cc', | 57 'public/test/test_browser_state.cc', |
52 'public/test/test_browser_state.h', | 58 'public/test/test_browser_state.h', |
53 ], | 59 ], |
54 }, | 60 }, |
55 ], | 61 ], |
56 } | 62 } |
OLD | NEW |