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 11 matching lines...) Expand all Loading... |
22 "blink_test_platform_support_android.cc", | 22 "blink_test_platform_support_android.cc", |
23 "blink_test_platform_support_linux.cc", | 23 "blink_test_platform_support_linux.cc", |
24 "blink_test_platform_support_mac.mm", | 24 "blink_test_platform_support_mac.mm", |
25 "blink_test_platform_support_win.cc", | 25 "blink_test_platform_support_win.cc", |
26 "event_sender.cc", | 26 "event_sender.cc", |
27 "event_sender.h", | 27 "event_sender.h", |
28 "gamepad_controller.cc", | 28 "gamepad_controller.cc", |
29 "gamepad_controller.h", | 29 "gamepad_controller.h", |
30 "gc_controller.cc", | 30 "gc_controller.cc", |
31 "gc_controller.h", | 31 "gc_controller.h", |
| 32 "layout_dump.cc", |
| 33 "layout_dump.h", |
| 34 "layout_dump_flags.h", |
32 "mock_color_chooser.cc", | 35 "mock_color_chooser.cc", |
33 "mock_color_chooser.h", | 36 "mock_color_chooser.h", |
34 "mock_credential_manager_client.cc", | 37 "mock_credential_manager_client.cc", |
35 "mock_credential_manager_client.h", | 38 "mock_credential_manager_client.h", |
36 "mock_grammar_check.cc", | 39 "mock_grammar_check.cc", |
37 "mock_grammar_check.h", | 40 "mock_grammar_check.h", |
38 "mock_screen_orientation_client.cc", | 41 "mock_screen_orientation_client.cc", |
39 "mock_screen_orientation_client.h", | 42 "mock_screen_orientation_client.h", |
40 "mock_spell_check.cc", | 43 "mock_spell_check.cc", |
41 "mock_spell_check.h", | 44 "mock_spell_check.h", |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
188 | 191 |
189 if (is_mac) { | 192 if (is_mac) { |
190 libs = [ "AppKit.framework" ] | 193 libs = [ "AppKit.framework" ] |
191 } | 194 } |
192 | 195 |
193 deps = [ | 196 deps = [ |
194 "//build/config/sanitizers:deps", | 197 "//build/config/sanitizers:deps", |
195 ] | 198 ] |
196 } | 199 } |
197 } | 200 } |
OLD | NEW |