| 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 4980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4991 | 4991 |
| 4992 if (!is_android) { | 4992 if (!is_android) { |
| 4993 # TODO(609855): Make this compile on Android and run on the bots. | 4993 # TODO(609855): Make this compile on Android and run on the bots. |
| 4994 test("chrome_app_unittests") { | 4994 test("chrome_app_unittests") { |
| 4995 sources = [ | 4995 sources = [ |
| 4996 "../app/chrome_watcher_client_unittest_win.cc", | 4996 "../app/chrome_watcher_client_unittest_win.cc", |
| 4997 "../app/chrome_watcher_client_win.cc", | 4997 "../app/chrome_watcher_client_win.cc", |
| 4998 "../app/chrome_watcher_command_line_win.cc", | 4998 "../app/chrome_watcher_command_line_win.cc", |
| 4999 "../app/chrome_watcher_command_line_win_unittest.cc", | 4999 "../app/chrome_watcher_command_line_win_unittest.cc", |
| 5000 "../app/resources/resources_unittest.cc", | 5000 "../app/resources/resources_unittest.cc", |
| 5001 "../common/crash_keys.cc", | |
| 5002 "../common/crash_keys.h", | |
| 5003 ] | 5001 ] |
| 5004 deps = [ | 5002 deps = [ |
| 5005 ":test_support", | 5003 ":test_support", |
| 5006 "//base/test:run_all_unittests", | 5004 "//base/test:run_all_unittests", |
| 5007 "//base/test:test_support", | 5005 "//base/test:test_support", |
| 5008 "//breakpad:client", | 5006 "//breakpad:client", |
| 5009 "//chrome/browser", | 5007 "//chrome/browser", |
| 5010 "//chrome/child", | 5008 "//chrome/child", |
| 5009 "//chrome/common", |
| 5011 "//components/crash/core/common", | 5010 "//components/crash/core/common", |
| 5012 "//components/flags_ui:switches", | 5011 "//components/flags_ui:switches", |
| 5013 ] | 5012 ] |
| 5013 |
| 5014 if (is_chromeos) { |
| 5015 sources += [ "../app/mash/mash_crash_keys_unittest.cc" ] |
| 5016 deps += [ "//chrome/app/mash" ] |
| 5017 } |
| 5014 } | 5018 } |
| 5015 } | 5019 } |
| 5016 | 5020 |
| 5017 if (!is_android && !is_chromecast) { | 5021 if (!is_android && !is_chromecast) { |
| 5018 test("performance_browser_tests") { | 5022 test("performance_browser_tests") { |
| 5019 sources = [ | 5023 sources = [ |
| 5020 "../app/chrome_version.rc.version", | 5024 "../app/chrome_version.rc.version", |
| 5021 "../browser/extensions/api/cast_streaming/performance_test.cc", | 5025 "../browser/extensions/api/cast_streaming/performance_test.cc", |
| 5022 "../browser/extensions/api/tab_capture/tab_capture_performancetest.cc", | 5026 "../browser/extensions/api/tab_capture/tab_capture_performancetest.cc", |
| 5023 "../browser/extensions/browsertest_util.cc", | 5027 "../browser/extensions/browsertest_util.cc", |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5187 } | 5191 } |
| 5188 | 5192 |
| 5189 if (is_win) { | 5193 if (is_win) { |
| 5190 loadable_module("conflicts_dll") { | 5194 loadable_module("conflicts_dll") { |
| 5191 testonly = true | 5195 testonly = true |
| 5192 sources = [ | 5196 sources = [ |
| 5193 "conflicts/conflicts_dll.cc", | 5197 "conflicts/conflicts_dll.cc", |
| 5194 ] | 5198 ] |
| 5195 } | 5199 } |
| 5196 } | 5200 } |
| OLD | NEW |