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 4898 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
4909 | 4909 |
4910 if (!is_android) { | 4910 if (!is_android) { |
4911 # TODO(609855): Make this compile on Android and run on the bots. | 4911 # TODO(609855): Make this compile on Android and run on the bots. |
4912 test("chrome_app_unittests") { | 4912 test("chrome_app_unittests") { |
4913 sources = [ | 4913 sources = [ |
4914 "../app/chrome_watcher_client_unittest_win.cc", | 4914 "../app/chrome_watcher_client_unittest_win.cc", |
4915 "../app/chrome_watcher_client_win.cc", | 4915 "../app/chrome_watcher_client_win.cc", |
4916 "../app/chrome_watcher_command_line_win.cc", | 4916 "../app/chrome_watcher_command_line_win.cc", |
4917 "../app/chrome_watcher_command_line_win_unittest.cc", | 4917 "../app/chrome_watcher_command_line_win_unittest.cc", |
4918 "../app/resources/resources_unittest.cc", | 4918 "../app/resources/resources_unittest.cc", |
4919 "../app/user_data_dir_win_unittest.cc", | |
grt (UTC plus 2)
2016/11/16 13:24:53
missing file?
scottmg
2016/11/16 21:01:18
Done.
| |
4919 "../common/crash_keys.cc", | 4920 "../common/crash_keys.cc", |
4920 "../common/crash_keys.h", | 4921 "../common/crash_keys.h", |
4921 ] | 4922 ] |
4923 | |
4922 deps = [ | 4924 deps = [ |
4923 ":test_support", | 4925 ":test_support", |
4924 "//base/test:run_all_unittests", | 4926 "//base/test:run_all_unittests", |
4925 "//base/test:test_support", | 4927 "//base/test:test_support", |
4926 "//breakpad:client", | 4928 "//breakpad:client", |
4927 "//chrome/browser", | 4929 "//chrome/browser", |
4928 "//chrome/child", | 4930 "//chrome/child", |
4929 "//components/crash/core/common", | 4931 "//components/crash/core/common", |
4930 "//components/flags_ui:switches", | 4932 "//components/flags_ui:switches", |
4931 "//third_party/kasko:kasko_features", | 4933 "//third_party/kasko:kasko_features", |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
5055 "touch_hud", | 5057 "touch_hud", |
5056 "ui", | 5058 "ui", |
5057 ] | 5059 ] |
5058 | 5060 |
5059 if (is_linux && !is_android) { | 5061 if (is_linux && !is_android) { |
5060 deps += [ "//components/font_service:manifest" ] | 5062 deps += [ "//components/font_service:manifest" ] |
5061 packaged_services += [ "font_service" ] | 5063 packaged_services += [ "font_service" ] |
5062 } | 5064 } |
5063 } | 5065 } |
5064 } | 5066 } |
OLD | NEW |