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 5021 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5032 } | 5032 } |
5033 | 5033 |
5034 # This target should not require the Chrome executable to run. | 5034 # This target should not require the Chrome executable to run. |
5035 assert_no_deps = [ "//chrome" ] | 5035 assert_no_deps = [ "//chrome" ] |
5036 } | 5036 } |
5037 } | 5037 } |
5038 | 5038 |
5039 static_library("test_support_unit") { | 5039 static_library("test_support_unit") { |
5040 testonly = true | 5040 testonly = true |
5041 sources = [ | 5041 sources = [ |
5042 "base/run_all_unittests.cc", | 5042 "run_all_unittests.cc", |
5043 ] | 5043 ] |
5044 | 5044 |
5045 public_deps = [ | 5045 public_deps = [ |
5046 ":test_support", | 5046 ":test_support", |
5047 "//base", | 5047 "//base", |
5048 "//chrome:resources", | 5048 "//chrome:resources", |
5049 "//chrome:strings", | 5049 "//chrome:strings", |
5050 "//chrome/browser", | 5050 "//chrome/browser", |
5051 "//chrome/common", | 5051 "//chrome/common", |
| 5052 "//gpu/ipc/service", |
5052 "//mojo/edk/test:test_support", | 5053 "//mojo/edk/test:test_support", |
5053 ] | 5054 ] |
5054 | 5055 |
5055 if (!is_android && use_ash) { | 5056 if (!is_android && use_ash) { |
5056 sources += [ | 5057 sources += [ |
5057 "../browser/ui/ash/launcher/test/launcher_application_menu_item_model_test
_api.cc", | 5058 "../browser/ui/ash/launcher/test/launcher_application_menu_item_model_test
_api.cc", |
5058 "../browser/ui/ash/launcher/test/launcher_application_menu_item_model_test
_api.h", | 5059 "../browser/ui/ash/launcher/test/launcher_application_menu_item_model_test
_api.h", |
5059 "../browser/ui/ash/launcher/test/test_chrome_launcher_app_menu_item.cc", | 5060 "../browser/ui/ash/launcher/test/test_chrome_launcher_app_menu_item.cc", |
5060 "../browser/ui/ash/launcher/test/test_chrome_launcher_app_menu_item.h", | 5061 "../browser/ui/ash/launcher/test/test_chrome_launcher_app_menu_item.h", |
5061 ] | 5062 ] |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5100 "touch_hud", | 5101 "touch_hud", |
5101 "ui", | 5102 "ui", |
5102 ] | 5103 ] |
5103 | 5104 |
5104 if (is_linux && !is_android) { | 5105 if (is_linux && !is_android) { |
5105 deps += [ "//components/font_service:manifest" ] | 5106 deps += [ "//components/font_service:manifest" ] |
5106 packaged_services += [ "font_service" ] | 5107 packaged_services += [ "font_service" ] |
5107 } | 5108 } |
5108 } | 5109 } |
5109 } | 5110 } |
OLD | NEW |