| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 "test_common.h", | 68 "test_common.h", |
| 69 "test_interfaces.cc", | 69 "test_interfaces.cc", |
| 70 "test_interfaces.h", | 70 "test_interfaces.h", |
| 71 "test_plugin.cc", | 71 "test_plugin.cc", |
| 72 "test_plugin.h", | 72 "test_plugin.h", |
| 73 "test_preferences.cc", | 73 "test_preferences.cc", |
| 74 "test_preferences.h", | 74 "test_preferences.h", |
| 75 "test_runner.cc", | 75 "test_runner.cc", |
| 76 "test_runner.h", | 76 "test_runner.h", |
| 77 "test_runner_export.h", | 77 "test_runner_export.h", |
| 78 "test_runner_for_specific_view.cc", |
| 79 "test_runner_for_specific_view.h", |
| 78 "text_input_controller.cc", | 80 "text_input_controller.cc", |
| 79 "text_input_controller.h", | 81 "text_input_controller.h", |
| 80 "tracked_dictionary.cc", | 82 "tracked_dictionary.cc", |
| 81 "tracked_dictionary.h", | 83 "tracked_dictionary.h", |
| 82 "web_ax_object_proxy.cc", | 84 "web_ax_object_proxy.cc", |
| 83 "web_ax_object_proxy.h", | 85 "web_ax_object_proxy.h", |
| 84 "web_frame_test_client.cc", | 86 "web_frame_test_client.cc", |
| 85 "web_frame_test_client.h", | 87 "web_frame_test_client.h", |
| 86 "web_frame_test_proxy.cc", | 88 "web_frame_test_proxy.cc", |
| 87 "web_frame_test_proxy.h", | 89 "web_frame_test_proxy.h", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 199 if (is_mac) { | 201 if (is_mac) { |
| 200 libs = [ "AppKit.framework" ] | 202 libs = [ "AppKit.framework" ] |
| 201 } | 203 } |
| 202 | 204 |
| 203 deps = [ | 205 deps = [ |
| 204 "//build/config/sanitizers:deps", | 206 "//build/config/sanitizers:deps", |
| 205 "//build/win:default_exe_manifest", | 207 "//build/win:default_exe_manifest", |
| 206 ] | 208 ] |
| 207 } | 209 } |
| 208 } | 210 } |
| OLD | NEW |