| 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 18 matching lines...) Expand all Loading... |
| 29 "layout_dump.cc", | 29 "layout_dump.cc", |
| 30 "layout_dump.h", | 30 "layout_dump.h", |
| 31 "layout_test_runtime_flags.cc", | 31 "layout_test_runtime_flags.cc", |
| 32 "layout_test_runtime_flags.h", | 32 "layout_test_runtime_flags.h", |
| 33 "mock_color_chooser.cc", | 33 "mock_color_chooser.cc", |
| 34 "mock_color_chooser.h", | 34 "mock_color_chooser.h", |
| 35 "mock_content_settings_client.cc", | 35 "mock_content_settings_client.cc", |
| 36 "mock_content_settings_client.h", | 36 "mock_content_settings_client.h", |
| 37 "mock_credential_manager_client.cc", | 37 "mock_credential_manager_client.cc", |
| 38 "mock_credential_manager_client.h", | 38 "mock_credential_manager_client.h", |
| 39 "mock_grammar_check.cc", | |
| 40 "mock_grammar_check.h", | |
| 41 "mock_screen_orientation_client.cc", | 39 "mock_screen_orientation_client.cc", |
| 42 "mock_screen_orientation_client.h", | 40 "mock_screen_orientation_client.h", |
| 43 "mock_spell_check.cc", | 41 "mock_spell_check.cc", |
| 44 "mock_spell_check.h", | 42 "mock_spell_check.h", |
| 45 "mock_web_audio_device.cc", | 43 "mock_web_audio_device.cc", |
| 46 "mock_web_audio_device.h", | 44 "mock_web_audio_device.h", |
| 47 "mock_web_document_subresource_filter.cc", | 45 "mock_web_document_subresource_filter.cc", |
| 48 "mock_web_document_subresource_filter.h", | 46 "mock_web_document_subresource_filter.h", |
| 49 "mock_web_media_stream_center.cc", | 47 "mock_web_media_stream_center.cc", |
| 50 "mock_web_media_stream_center.h", | 48 "mock_web_media_stream_center.h", |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 if (is_mac) { | 210 if (is_mac) { |
| 213 libs = [ "AppKit.framework" ] | 211 libs = [ "AppKit.framework" ] |
| 214 } | 212 } |
| 215 | 213 |
| 216 deps = [ | 214 deps = [ |
| 217 "//build/config/sanitizers:deps", | 215 "//build/config/sanitizers:deps", |
| 218 "//build/win:default_exe_manifest", | 216 "//build/win:default_exe_manifest", |
| 219 ] | 217 ] |
| 220 } | 218 } |
| 221 } | 219 } |
| OLD | NEW |