| 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 26 matching lines...) Expand all Loading... |
| 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", | 39 "mock_grammar_check.cc", |
| 40 "mock_grammar_check.h", | 40 "mock_grammar_check.h", |
| 41 "mock_screen_orientation_client.cc", | 41 "mock_screen_orientation_client.cc", |
| 42 "mock_screen_orientation_client.h", | 42 "mock_screen_orientation_client.h", |
| 43 "mock_spell_check.cc", | 43 "mock_spell_check.cc", |
| 44 "mock_spell_check.h", | 44 "mock_spell_check.h", |
| 45 "mock_web_audio_device.cc", | 45 "mock_web_audio_device.cc", |
| 46 "mock_web_audio_device.h", | 46 "mock_web_audio_device.h", |
| 47 "mock_web_document_subresource_filter.cc", |
| 48 "mock_web_document_subresource_filter.h", |
| 47 "mock_web_media_stream_center.cc", | 49 "mock_web_media_stream_center.cc", |
| 48 "mock_web_media_stream_center.h", | 50 "mock_web_media_stream_center.h", |
| 49 "mock_web_midi_accessor.cc", | 51 "mock_web_midi_accessor.cc", |
| 50 "mock_web_midi_accessor.h", | 52 "mock_web_midi_accessor.h", |
| 51 "mock_web_speech_recognizer.cc", | 53 "mock_web_speech_recognizer.cc", |
| 52 "mock_web_speech_recognizer.h", | 54 "mock_web_speech_recognizer.h", |
| 53 "mock_web_theme_engine.cc", | 55 "mock_web_theme_engine.cc", |
| 54 "mock_web_theme_engine.h", | 56 "mock_web_theme_engine.h", |
| 55 "mock_web_user_media_client.cc", | 57 "mock_web_user_media_client.cc", |
| 56 "mock_web_user_media_client.h", | 58 "mock_web_user_media_client.h", |
| (...skipping 151 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 208 if (is_mac) { | 210 if (is_mac) { |
| 209 libs = [ "AppKit.framework" ] | 211 libs = [ "AppKit.framework" ] |
| 210 } | 212 } |
| 211 | 213 |
| 212 deps = [ | 214 deps = [ |
| 213 "//build/config/sanitizers:deps", | 215 "//build/config/sanitizers:deps", |
| 214 "//build/win:default_exe_manifest", | 216 "//build/win:default_exe_manifest", |
| 215 ] | 217 ] |
| 216 } | 218 } |
| 217 } | 219 } |
| OLD | NEW |