| 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_constraints.cc", | 37 "mock_constraints.cc", |
| 35 "mock_constraints.h", | 38 "mock_constraints.h", |
| 36 "mock_credential_manager_client.cc", | 39 "mock_credential_manager_client.cc", |
| 37 "mock_credential_manager_client.h", | 40 "mock_credential_manager_client.h", |
| 38 "mock_grammar_check.cc", | 41 "mock_grammar_check.cc", |
| 39 "mock_grammar_check.h", | 42 "mock_grammar_check.h", |
| 40 "mock_screen_orientation_client.cc", | 43 "mock_screen_orientation_client.cc", |
| 41 "mock_screen_orientation_client.h", | 44 "mock_screen_orientation_client.h", |
| (...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 190 | 193 |
| 191 if (is_mac) { | 194 if (is_mac) { |
| 192 libs = [ "AppKit.framework" ] | 195 libs = [ "AppKit.framework" ] |
| 193 } | 196 } |
| 194 | 197 |
| 195 deps = [ | 198 deps = [ |
| 196 "//build/config/sanitizers:deps", | 199 "//build/config/sanitizers:deps", |
| 197 ] | 200 ] |
| 198 } | 201 } |
| 199 } | 202 } |
| OLD | NEW |