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', | |
droger
2014/12/09 15:55:54
this file was in common/, but I think we should no
| |
45 ], | 60 ], |
46 }, | 61 }, |
47 { | 62 { |
48 'target_name': 'test_support_ios_web', | 63 'target_name': 'test_support_ios_web', |
49 'type': 'static_library', | 64 'type': 'static_library', |
50 'dependencies': [ | 65 'dependencies': [ |
51 'ios_web', | 66 'ios_web', |
52 ], | 67 ], |
53 'include_dirs': [ | 68 'include_dirs': [ |
54 '../..', | 69 '../..', |
55 ], | 70 ], |
56 'sources': [ | 71 'sources': [ |
72 'public/test/crw_test_js_injection_receiver.h', | |
73 'public/test/crw_test_js_injection_receiver.mm', | |
droger
2014/12/09 15:55:54
I'm following the pattern of test_browser_state he
stuartmorgan
2014/12/11 23:59:38
Honestly I'm not really clear on when content/ put
| |
57 'public/test/test_browser_state.cc', | 74 'public/test/test_browser_state.cc', |
58 'public/test/test_browser_state.h', | 75 'public/test/test_browser_state.h', |
59 ], | 76 ], |
60 }, | 77 }, |
61 ], | 78 ], |
62 } | 79 } |
OLD | NEW |