| 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 { |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 'public/favicon_status.h', | 30 'public/favicon_status.h', |
| 31 'public/load_committed_details.h', | 31 'public/load_committed_details.h', |
| 32 'public/navigation_item.h', | 32 'public/navigation_item.h', |
| 33 'public/referrer.h', | 33 'public/referrer.h', |
| 34 'public/security_style.h', | 34 'public/security_style.h', |
| 35 'public/ssl_status.cc', | 35 'public/ssl_status.cc', |
| 36 'public/ssl_status.h', | 36 'public/ssl_status.h', |
| 37 'public/string_util.h', | 37 'public/string_util.h', |
| 38 'public/user_agent.h', | 38 'public/user_agent.h', |
| 39 'public/user_agent.mm', | 39 'public/user_agent.mm', |
| 40 'public/web_state/js/crw_js_base_manager.h', |
| 41 'public/web_state/js/crw_js_injection_evaluator.h', |
| 42 'public/web_state/js/crw_js_injection_manager.h', |
| 43 'public/web_state/js/crw_js_injection_receiver.h', |
| 44 'public/web_state/js/crw_js_message_manager.h', |
| 40 'public/web_state/web_state_observer.h', | 45 'public/web_state/web_state_observer.h', |
| 41 'public/web_thread.h', | 46 'public/web_thread.h', |
| 42 'string_util.cc', | 47 'string_util.cc', |
| 48 'web_state/js/crw_js_base_manager.mm', |
| 49 'web_state/js/crw_js_common_manager.h', |
| 50 'web_state/js/crw_js_common_manager.mm', |
| 51 'web_state/js/crw_js_injection_manager.mm', |
| 52 'web_state/js/crw_js_injection_receiver.mm', |
| 53 'web_state/js/crw_js_message_dynamic_manager.h', |
| 54 'web_state/js/crw_js_message_dynamic_manager.mm', |
| 55 'web_state/js/crw_js_message_manager.mm', |
| 43 'web_state/web_state_observer.cc', | 56 'web_state/web_state_observer.cc', |
| 44 'web_thread.cc', | 57 'web_thread.cc', |
| 58 'web_view_util.h', |
| 59 'web_view_util.mm', |
| 45 ], | 60 ], |
| 46 }, | 61 }, |
| 47 { | 62 { |
| 48 'target_name': 'js_resources', | 63 'target_name': 'js_resources', |
| 49 'type': 'none', | 64 'type': 'none', |
| 50 'sources': [ | 65 'sources': [ |
| 51 'web_state/js/resources/base.js', | 66 'web_state/js/resources/base.js', |
| 52 'web_state/js/resources/common.js', | 67 'web_state/js/resources/common.js', |
| 53 'web_state/js/resources/message.js', | 68 'web_state/js/resources/message.js', |
| 54 'web_state/js/resources/message_dynamic_ui.js', | 69 'web_state/js/resources/message_dynamic_ui.js', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 70 { | 85 { |
| 71 'target_name': 'test_support_ios_web', | 86 'target_name': 'test_support_ios_web', |
| 72 'type': 'static_library', | 87 'type': 'static_library', |
| 73 'dependencies': [ | 88 'dependencies': [ |
| 74 'ios_web', | 89 'ios_web', |
| 75 ], | 90 ], |
| 76 'include_dirs': [ | 91 'include_dirs': [ |
| 77 '../..', | 92 '../..', |
| 78 ], | 93 ], |
| 79 'sources': [ | 94 'sources': [ |
| 95 'public/test/crw_test_js_injection_receiver.h', |
| 96 'public/test/crw_test_js_injection_receiver.mm', |
| 80 'public/test/test_browser_state.cc', | 97 'public/test/test_browser_state.cc', |
| 81 'public/test/test_browser_state.h', | 98 'public/test/test_browser_state.h', |
| 82 'public/test/test_web_state.cc', | 99 'public/test/test_web_state.cc', |
| 83 'public/test/test_web_state.h', | 100 'public/test/test_web_state.h', |
| 84 ], | 101 ], |
| 85 }, | 102 }, |
| 86 ], | 103 ], |
| 87 } | 104 } |
| OLD | NEW |