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