| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
| (...skipping 2024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2035 } | 2035 } |
| 2036 } | 2036 } |
| 2037 } | 2037 } |
| 2038 | 2038 |
| 2039 if (enable_extensions) { | 2039 if (enable_extensions) { |
| 2040 sources += [ | 2040 sources += [ |
| 2041 "../browser/apps/app_browsertest_util.cc", | 2041 "../browser/apps/app_browsertest_util.cc", |
| 2042 "../browser/apps/app_browsertest_util.h", | 2042 "../browser/apps/app_browsertest_util.h", |
| 2043 "../browser/extensions/browsertest_util.cc", | 2043 "../browser/extensions/browsertest_util.cc", |
| 2044 "../browser/extensions/browsertest_util.h", | 2044 "../browser/extensions/browsertest_util.h", |
| 2045 "../browser/extensions/chrome_extension_test_notification_observer.cc", | |
| 2046 "../browser/extensions/chrome_extension_test_notification_observer.h", | |
| 2047 "../browser/extensions/extension_apitest.cc", | 2045 "../browser/extensions/extension_apitest.cc", |
| 2048 "../browser/extensions/extension_apitest.h", | 2046 "../browser/extensions/extension_apitest.h", |
| 2049 "../browser/extensions/extension_browsertest.cc", | 2047 "../browser/extensions/extension_browsertest.cc", |
| 2050 "../browser/extensions/extension_browsertest.h", | 2048 "../browser/extensions/extension_browsertest.h", |
| 2051 "../browser/extensions/extension_function_test_utils.cc", | 2049 "../browser/extensions/extension_function_test_utils.cc", |
| 2052 "../browser/extensions/extension_function_test_utils.h", | 2050 "../browser/extensions/extension_function_test_utils.h", |
| 2053 "../browser/extensions/updater/extension_cache_fake.cc", | 2051 "../browser/extensions/updater/extension_cache_fake.cc", |
| 2054 "../browser/extensions/updater/extension_cache_fake.h", | 2052 "../browser/extensions/updater/extension_cache_fake.h", |
| 2055 ] | 2053 ] |
| 2056 | 2054 |
| (...skipping 3040 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5097 "touch_hud", | 5095 "touch_hud", |
| 5098 "ui", | 5096 "ui", |
| 5099 ] | 5097 ] |
| 5100 | 5098 |
| 5101 if (is_linux && !is_android) { | 5099 if (is_linux && !is_android) { |
| 5102 deps += [ "//components/font_service:manifest" ] | 5100 deps += [ "//components/font_service:manifest" ] |
| 5103 packaged_services += [ "font_service" ] | 5101 packaged_services += [ "font_service" ] |
| 5104 } | 5102 } |
| 5105 } | 5103 } |
| 5106 } | 5104 } |
| OLD | NEW |