| 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 'webp_decoder', |
| 17 '../../base/base.gyp:base', | 18 '../../base/base.gyp:base', |
| 18 '../../content/content.gyp:content_browser', | 19 '../../content/content.gyp:content_browser', |
| 19 '../../net/net.gyp:net', | 20 '../../net/net.gyp:net', |
| 20 '../../ui/base/ui_base.gyp:ui_base', | 21 '../../ui/base/ui_base.gyp:ui_base', |
| 21 '../../ui/gfx/gfx.gyp:gfx', | 22 '../../ui/gfx/gfx.gyp:gfx', |
| 22 ], | 23 ], |
| 23 'sources': [ | 24 'sources': [ |
| 24 'browser_state.cc', | 25 'browser_state.cc', |
| 25 'load_committed_details.cc', | 26 'load_committed_details.cc', |
| 26 'navigation/navigation_item_impl.h', | 27 'navigation/navigation_item_impl.h', |
| (...skipping 11 matching lines...) Expand all Loading... |
| 38 'public/user_agent.h', | 39 'public/user_agent.h', |
| 39 'public/user_agent.mm', | 40 'public/user_agent.mm', |
| 40 'public/web_state/web_state_observer.h', | 41 'public/web_state/web_state_observer.h', |
| 41 'public/web_thread.h', | 42 'public/web_thread.h', |
| 42 'string_util.cc', | 43 'string_util.cc', |
| 43 'web_state/web_state_observer.cc', | 44 'web_state/web_state_observer.cc', |
| 44 'web_thread.cc', | 45 'web_thread.cc', |
| 45 ], | 46 ], |
| 46 }, | 47 }, |
| 47 { | 48 { |
| 49 'target_name': 'webp_decoder', |
| 50 'type': 'static_library', |
| 51 'include_dirs': [ |
| 52 '../..', |
| 53 ], |
| 54 'dependencies': [ |
| 55 '../../base/base.gyp:base', |
| 56 '../../third_party/libwebp/libwebp.gyp:libwebp_dec', |
| 57 ], |
| 58 'sources': [ |
| 59 'public/webp_decoder.h', |
| 60 'public/webp_decoder.mm', |
| 61 ], |
| 62 }, |
| 63 { |
| 48 'target_name': 'test_support_ios_web', | 64 'target_name': 'test_support_ios_web', |
| 49 'type': 'static_library', | 65 'type': 'static_library', |
| 50 'dependencies': [ | 66 'dependencies': [ |
| 51 'ios_web', | 67 'ios_web', |
| 52 ], | 68 ], |
| 53 'include_dirs': [ | 69 'include_dirs': [ |
| 54 '../..', | 70 '../..', |
| 55 ], | 71 ], |
| 56 'sources': [ | 72 'sources': [ |
| 57 'public/test/test_browser_state.cc', | 73 'public/test/test_browser_state.cc', |
| 58 'public/test/test_browser_state.h', | 74 'public/test/test_browser_state.h', |
| 59 'public/test/test_web_state.cc', | 75 'public/test/test_web_state.cc', |
| 60 'public/test/test_web_state.h', | 76 'public/test/test_web_state.h', |
| 61 ], | 77 ], |
| 62 }, | 78 }, |
| 63 ], | 79 ], |
| 64 } | 80 } |
| OLD | NEW |