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 4926 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4937 | 4937 |
4938 if (!is_android) { | 4938 if (!is_android) { |
4939 # TODO(609855): Make this compile on Android and run on the bots. | 4939 # TODO(609855): Make this compile on Android and run on the bots. |
4940 test("chrome_app_unittests") { | 4940 test("chrome_app_unittests") { |
4941 sources = [ | 4941 sources = [ |
4942 "../app/chrome_watcher_client_unittest_win.cc", | 4942 "../app/chrome_watcher_client_unittest_win.cc", |
4943 "../app/chrome_watcher_client_win.cc", | 4943 "../app/chrome_watcher_client_win.cc", |
4944 "../app/chrome_watcher_command_line_win.cc", | 4944 "../app/chrome_watcher_command_line_win.cc", |
4945 "../app/chrome_watcher_command_line_win_unittest.cc", | 4945 "../app/chrome_watcher_command_line_win_unittest.cc", |
4946 "../app/resources/resources_unittest.cc", | 4946 "../app/resources/resources_unittest.cc", |
| 4947 "../app/run_all_tests.cc", |
| 4948 "../app/user_data_dir_win_unittest.cc", |
4947 "../common/crash_keys.cc", | 4949 "../common/crash_keys.cc", |
4948 "../common/crash_keys.h", | 4950 "../common/crash_keys.h", |
4949 ] | 4951 ] |
| 4952 |
4950 deps = [ | 4953 deps = [ |
4951 ":test_support", | 4954 ":test_support", |
4952 "//base/test:run_all_unittests", | |
4953 "//base/test:test_support", | 4955 "//base/test:test_support", |
4954 "//breakpad:client", | 4956 "//breakpad:client", |
4955 "//chrome/browser", | 4957 "//chrome/browser", |
4956 "//chrome/child", | 4958 "//chrome/child", |
4957 "//components/crash/core/common", | 4959 "//components/crash/core/common", |
4958 "//components/flags_ui:switches", | 4960 "//components/flags_ui:switches", |
4959 "//third_party/kasko:kasko_features", | 4961 "//third_party/kasko:kasko_features", |
4960 ] | 4962 ] |
4961 } | 4963 } |
4962 } | 4964 } |
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5092 "touch_hud", | 5094 "touch_hud", |
5093 "ui", | 5095 "ui", |
5094 ] | 5096 ] |
5095 | 5097 |
5096 if (is_linux && !is_android) { | 5098 if (is_linux && !is_android) { |
5097 deps += [ "//components/font_service:manifest" ] | 5099 deps += [ "//components/font_service:manifest" ] |
5098 packaged_services += [ "font_service" ] | 5100 packaged_services += [ "font_service" ] |
5099 } | 5101 } |
5100 } | 5102 } |
5101 } | 5103 } |
OLD | NEW |