OLD | NEW |
1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 if (is_android) { | 7 if (is_android) { |
8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
9 } | 9 } |
10 | 10 |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 "mock_web_theme_engine.cc", | 45 "mock_web_theme_engine.cc", |
46 "mock_web_theme_engine.h", | 46 "mock_web_theme_engine.h", |
47 "mock_web_user_media_client.cc", | 47 "mock_web_user_media_client.cc", |
48 "mock_web_user_media_client.h", | 48 "mock_web_user_media_client.h", |
49 "mock_webrtc_data_channel_handler.cc", | 49 "mock_webrtc_data_channel_handler.cc", |
50 "mock_webrtc_data_channel_handler.h", | 50 "mock_webrtc_data_channel_handler.h", |
51 "mock_webrtc_dtmf_sender_handler.cc", | 51 "mock_webrtc_dtmf_sender_handler.cc", |
52 "mock_webrtc_dtmf_sender_handler.h", | 52 "mock_webrtc_dtmf_sender_handler.h", |
53 "mock_webrtc_peer_connection_handler.cc", | 53 "mock_webrtc_peer_connection_handler.cc", |
54 "mock_webrtc_peer_connection_handler.h", | 54 "mock_webrtc_peer_connection_handler.h", |
| 55 "renderer/mock_video_capturer_source.h", |
55 "spell_check_client.cc", | 56 "spell_check_client.cc", |
56 "spell_check_client.h", | 57 "spell_check_client.h", |
57 "test_common.cc", | 58 "test_common.cc", |
58 "test_common.h", | 59 "test_common.h", |
59 "test_info_extractor.cc", | 60 "test_info_extractor.cc", |
60 "test_info_extractor.h", | 61 "test_info_extractor.h", |
61 "test_interfaces.cc", | 62 "test_interfaces.cc", |
62 "test_interfaces.h", | 63 "test_interfaces.h", |
63 "test_plugin.cc", | 64 "test_plugin.cc", |
64 "test_plugin.h", | 65 "test_plugin.h", |
(...skipping 21 matching lines...) Expand all Loading... |
86 | 87 |
87 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 88 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
88 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 89 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
89 | 90 |
90 deps = [ | 91 deps = [ |
91 ":resources", | 92 ":resources", |
92 "//base:base", | 93 "//base:base", |
93 "//base:i18n", | 94 "//base:i18n", |
94 "//cc", | 95 "//cc", |
95 "//cc/blink", | 96 "//cc/blink", |
| 97 "//content/public/renderer", |
96 "//gin", | 98 "//gin", |
97 "//gpu", | 99 "//gpu", |
| 100 "//media", |
98 "//net", | 101 "//net", |
99 "//skia", | 102 "//skia", |
100 "//third_party/WebKit/public:blink", | 103 "//third_party/WebKit/public:blink", |
101 "//ui/events:dom_keycode_converter", | 104 "//ui/events:dom_keycode_converter", |
102 "//ui/events:events_base", | 105 "//ui/events:events_base", |
103 "//ui/gfx", | 106 "//ui/gfx", |
104 "//ui/gfx/geometry", | 107 "//ui/gfx/geometry", |
105 "//url", | 108 "//url", |
106 "//v8", | 109 "//v8", |
107 | 110 |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 | 185 |
183 if (is_mac) { | 186 if (is_mac) { |
184 libs = [ "AppKit.framework" ] | 187 libs = [ "AppKit.framework" ] |
185 } | 188 } |
186 | 189 |
187 deps = [ | 190 deps = [ |
188 "//build/config/sanitizers:deps", | 191 "//build/config/sanitizers:deps", |
189 ] | 192 ] |
190 } | 193 } |
191 } | 194 } |
OLD | NEW |