| 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 'load_committed_details.cc', |
| 26 'navigation/navigation_item_impl.h', | 26 'navigation/navigation_item_impl.h', |
| 27 'navigation/navigation_item_impl.mm', | 27 'navigation/navigation_item_impl.mm', |
| 28 'public/block_types.h', |
| 28 'public/browser_state.h', | 29 'public/browser_state.h', |
| 29 'public/favicon_status.cc', | 30 'public/favicon_status.cc', |
| 30 'public/favicon_status.h', | 31 'public/favicon_status.h', |
| 31 'public/load_committed_details.h', | 32 'public/load_committed_details.h', |
| 32 'public/navigation_item.h', | 33 'public/navigation_item.h', |
| 33 'public/referrer.h', | 34 'public/referrer.h', |
| 34 'public/security_style.h', | 35 'public/security_style.h', |
| 35 'public/ssl_status.cc', | 36 'public/ssl_status.cc', |
| 36 'public/ssl_status.h', | 37 'public/ssl_status.h', |
| 37 'public/string_util.h', | 38 'public/string_util.h', |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 'public/test/test_web_state.cc', | 109 'public/test/test_web_state.cc', |
| 109 'public/test/test_web_state.h', | 110 'public/test/test_web_state.h', |
| 110 'public/test/test_web_thread.h', | 111 'public/test/test_web_thread.h', |
| 111 'public/test/test_web_thread_bundle.h', | 112 'public/test/test_web_thread_bundle.h', |
| 112 'test/test_web_thread.cc', | 113 'test/test_web_thread.cc', |
| 113 'test/test_web_thread_bundle.cc', | 114 'test/test_web_thread_bundle.cc', |
| 114 ], | 115 ], |
| 115 }, | 116 }, |
| 116 ], | 117 ], |
| 117 } | 118 } |
| OLD | NEW |