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 4071 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4082 "//chrome/browser/profiles/profile_statistics_unittest.cc", | 4082 "//chrome/browser/profiles/profile_statistics_unittest.cc", |
4083 "//chrome/browser/ui/startup/default_browser_infobar_delegate_unittest.cc"
, | 4083 "//chrome/browser/ui/startup/default_browser_infobar_delegate_unittest.cc"
, |
4084 "//chrome/browser/ui/startup/startup_browser_creator_impl_unittest.cc", | 4084 "//chrome/browser/ui/startup/startup_browser_creator_impl_unittest.cc", |
4085 "//chrome/browser/ui/startup/startup_tab_provider_unittest.cc", | 4085 "//chrome/browser/ui/startup/startup_tab_provider_unittest.cc", |
4086 ] | 4086 ] |
4087 } | 4087 } |
4088 if (use_gio) { | 4088 if (use_gio) { |
4089 deps += [ "//build/linux/libgio" ] | 4089 deps += [ "//build/linux/libgio" ] |
4090 } | 4090 } |
4091 if (!is_chromeos && !use_ozone && is_linux) { | 4091 if (!is_chromeos && !use_ozone && is_linux) { |
4092 deps += [ "//chrome/browser/ui/libgtk2ui" ] | 4092 if (use_gtk3) { |
| 4093 deps += [ "//chrome/browser/ui/libgtk2ui:libgtk3ui" ] |
| 4094 } else { |
| 4095 deps += [ "//chrome/browser/ui/libgtk2ui:libgtk2ui" ] |
| 4096 } |
4093 } | 4097 } |
4094 | 4098 |
4095 if (enable_task_manager) { | 4099 if (enable_task_manager) { |
4096 sources += [ | 4100 sources += [ |
4097 "../browser/task_manager/providers/browser_process_task_unittest.cc", | 4101 "../browser/task_manager/providers/browser_process_task_unittest.cc", |
4098 "../browser/task_manager/providers/child_process_task_unittest.cc", | 4102 "../browser/task_manager/providers/child_process_task_unittest.cc", |
4099 "../browser/task_manager/sampling/shared_sampler_unittest_win.cc", | 4103 "../browser/task_manager/sampling/shared_sampler_unittest_win.cc", |
4100 "../browser/task_manager/sampling/task_manager_impl_unittest.cc", | 4104 "../browser/task_manager/sampling/task_manager_impl_unittest.cc", |
4101 "../browser/task_manager/task_manager_observer_unittest.cc", | 4105 "../browser/task_manager/task_manager_observer_unittest.cc", |
4102 "../browser/task_manager/test_task_manager.cc", | 4106 "../browser/task_manager/test_task_manager.cc", |
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5027 "touch_hud", | 5031 "touch_hud", |
5028 "ui", | 5032 "ui", |
5029 ] | 5033 ] |
5030 | 5034 |
5031 if (is_linux && !is_android) { | 5035 if (is_linux && !is_android) { |
5032 deps += [ "//components/font_service:manifest" ] | 5036 deps += [ "//components/font_service:manifest" ] |
5033 packaged_services += [ "font_service" ] | 5037 packaged_services += [ "font_service" ] |
5034 } | 5038 } |
5035 } | 5039 } |
5036 } | 5040 } |
OLD | NEW |