| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'string_util.cc', | 50 'string_util.cc', |
| 51 'url_scheme_util.mm', | 51 'url_scheme_util.mm', |
| 52 'web_state/js/crw_js_base_manager.mm', | 52 'web_state/js/crw_js_base_manager.mm', |
| 53 'web_state/js/crw_js_common_manager.h', | 53 'web_state/js/crw_js_common_manager.h', |
| 54 'web_state/js/crw_js_common_manager.mm', | 54 'web_state/js/crw_js_common_manager.mm', |
| 55 'web_state/js/crw_js_injection_manager.mm', | 55 'web_state/js/crw_js_injection_manager.mm', |
| 56 'web_state/js/crw_js_injection_receiver.mm', | 56 'web_state/js/crw_js_injection_receiver.mm', |
| 57 'web_state/js/crw_js_message_dynamic_manager.h', | 57 'web_state/js/crw_js_message_dynamic_manager.h', |
| 58 'web_state/js/crw_js_message_dynamic_manager.mm', | 58 'web_state/js/crw_js_message_dynamic_manager.mm', |
| 59 'web_state/js/crw_js_message_manager.mm', | 59 'web_state/js/crw_js_message_manager.mm', |
| 60 'web_state/ui/web_view_js_utils.h', |
| 61 'web_state/ui/web_view_js_utils.mm', |
| 60 'web_state/web_state_observer.cc', | 62 'web_state/web_state_observer.cc', |
| 61 'web_thread.cc', | 63 'web_thread.cc', |
| 62 'web_thread_impl.cc', | 64 'web_thread_impl.cc', |
| 63 'web_thread_impl.h', | 65 'web_thread_impl.h', |
| 64 'web_view_util.h', | 66 'web_view_util.h', |
| 65 'web_view_util.mm', | 67 'web_view_util.mm', |
| 66 ], | 68 ], |
| 69 'link_settings': { |
| 70 'xcode_settings': { |
| 71 'OTHER_LDFLAGS': [ |
| 72 '-weak_framework WebKit', |
| 73 ] |
| 74 }, |
| 75 }, |
| 67 }, | 76 }, |
| 68 { | 77 { |
| 69 'target_name': 'js_resources', | 78 'target_name': 'js_resources', |
| 70 'type': 'none', | 79 'type': 'none', |
| 71 'sources': [ | 80 'sources': [ |
| 72 'web_state/js/resources/base.js', | 81 'web_state/js/resources/base.js', |
| 73 'web_state/js/resources/common.js', | 82 'web_state/js/resources/common.js', |
| 74 'web_state/js/resources/message.js', | 83 'web_state/js/resources/message.js', |
| 75 'web_state/js/resources/message_dynamic_ui.js', | 84 'web_state/js/resources/message_dynamic_ui.js', |
| 76 'web_state/js/resources/message_dynamic_wk.js', | 85 'web_state/js/resources/message_dynamic_wk.js', |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 'public/test/test_web_state.cc', | 117 'public/test/test_web_state.cc', |
| 109 'public/test/test_web_state.h', | 118 'public/test/test_web_state.h', |
| 110 'public/test/test_web_thread.h', | 119 'public/test/test_web_thread.h', |
| 111 'public/test/test_web_thread_bundle.h', | 120 'public/test/test_web_thread_bundle.h', |
| 112 'test/test_web_thread.cc', | 121 'test/test_web_thread.cc', |
| 113 'test/test_web_thread_bundle.cc', | 122 'test/test_web_thread_bundle.cc', |
| 114 ], | 123 ], |
| 115 }, | 124 }, |
| 116 ], | 125 ], |
| 117 } | 126 } |
| OLD | NEW |