| 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 3051 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3062 "../browser/resources/print_preview/data/measurement_system.js", | 3062 "../browser/resources/print_preview/data/measurement_system.js", |
| 3063 "../browser/resources/print_preview/print_preview_utils.js", | 3063 "../browser/resources/print_preview/print_preview_utils.js", |
| 3064 "../renderer/resources/extensions/notifications_custom_bindings.js", | 3064 "../renderer/resources/extensions/notifications_custom_bindings.js", |
| 3065 "../renderer/resources/extensions/notifications_test_util.js", | 3065 "../renderer/resources/extensions/notifications_test_util.js", |
| 3066 "//ui/webui/resources/js/cr.js", | 3066 "//ui/webui/resources/js/cr.js", |
| 3067 ] | 3067 ] |
| 3068 if (is_chromeos) { | 3068 if (is_chromeos) { |
| 3069 sources += [ | 3069 sources += [ |
| 3070 "../browser/resources/chromeos/braille_ime/braille_ime_unittest.gtestjs", | 3070 "../browser/resources/chromeos/braille_ime/braille_ime_unittest.gtestjs", |
| 3071 "../browser/resources/chromeos/select_to_speak/select_to_speak_unittest.gt
estjs", | 3071 "../browser/resources/chromeos/select_to_speak/select_to_speak_unittest.gt
estjs", |
| 3072 "../browser/resources/chromeos/switch_access/tree_walker_unittest.gtestjs"
, | |
| 3073 ] | 3072 ] |
| 3074 extra_js_files += [ | 3073 extra_js_files += [ |
| 3075 "../browser/resources/chromeos/braille_ime/braille_ime.js", | 3074 "../browser/resources/chromeos/braille_ime/braille_ime.js", |
| 3076 "../browser/resources/chromeos/select_to_speak/select_to_speak.js", | 3075 "../browser/resources/chromeos/select_to_speak/select_to_speak.js", |
| 3077 "../browser/resources/chromeos/select_to_speak/test_support.js", | 3076 "../browser/resources/chromeos/select_to_speak/test_support.js", |
| 3078 "../browser/resources/chromeos/switch_access/tree_walker.js", | |
| 3079 ] | 3077 ] |
| 3080 } | 3078 } |
| 3081 } | 3079 } |
| 3082 | 3080 |
| 3083 test("unit_tests") { | 3081 test("unit_tests") { |
| 3084 sources = [ | 3082 sources = [ |
| 3085 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this | 3083 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this |
| 3086 # dependency is needed to make commit bots run unit_tests on | 3084 # dependency is needed to make commit bots run unit_tests on |
| 3087 # histograms.xml changes. | 3085 # histograms.xml changes. |
| 3088 "../../tools/metrics/histograms/histograms.xml", | 3086 "../../tools/metrics/histograms/histograms.xml", |
| (...skipping 2149 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5238 } | 5236 } |
| 5239 | 5237 |
| 5240 if (is_win) { | 5238 if (is_win) { |
| 5241 loadable_module("conflicts_dll") { | 5239 loadable_module("conflicts_dll") { |
| 5242 testonly = true | 5240 testonly = true |
| 5243 sources = [ | 5241 sources = [ |
| 5244 "conflicts/conflicts_dll.cc", | 5242 "conflicts/conflicts_dll.cc", |
| 5245 ] | 5243 ] |
| 5246 } | 5244 } |
| 5247 } | 5245 } |
| OLD | NEW |