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