| 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 3026 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3037 "../browser/resources/print_preview/data/measurement_system.js", | 3037 "../browser/resources/print_preview/data/measurement_system.js", |
| 3038 "../browser/resources/print_preview/print_preview_utils.js", | 3038 "../browser/resources/print_preview/print_preview_utils.js", |
| 3039 "../renderer/resources/extensions/notifications_custom_bindings.js", | 3039 "../renderer/resources/extensions/notifications_custom_bindings.js", |
| 3040 "../renderer/resources/extensions/notifications_test_util.js", | 3040 "../renderer/resources/extensions/notifications_test_util.js", |
| 3041 "//ui/webui/resources/js/cr.js", | 3041 "//ui/webui/resources/js/cr.js", |
| 3042 ] | 3042 ] |
| 3043 if (is_chromeos) { | 3043 if (is_chromeos) { |
| 3044 sources += [ | 3044 sources += [ |
| 3045 "../browser/resources/chromeos/braille_ime/braille_ime_unittest.gtestjs", | 3045 "../browser/resources/chromeos/braille_ime/braille_ime_unittest.gtestjs", |
| 3046 "../browser/resources/chromeos/select_to_speak/select_to_speak_unittest.gt
estjs", | 3046 "../browser/resources/chromeos/select_to_speak/select_to_speak_unittest.gt
estjs", |
| 3047 "../browser/resources/chromeos/switch_access/switch_access_unittest.gtestj
s", | 3047 "../browser/resources/chromeos/switch_access/tree_walker_unittest.gtestjs"
, |
| 3048 ] | 3048 ] |
| 3049 extra_js_files += [ | 3049 extra_js_files += [ |
| 3050 "../browser/resources/chromeos/braille_ime/braille_ime.js", | 3050 "../browser/resources/chromeos/braille_ime/braille_ime.js", |
| 3051 "../browser/resources/chromeos/select_to_speak/select_to_speak.js", | 3051 "../browser/resources/chromeos/select_to_speak/select_to_speak.js", |
| 3052 "../browser/resources/chromeos/select_to_speak/test_support.js", | 3052 "../browser/resources/chromeos/select_to_speak/test_support.js", |
| 3053 "../browser/resources/chromeos/switch_access/prefs.js", | 3053 "../browser/resources/chromeos/switch_access/tree_walker.js", |
| 3054 "../browser/resources/chromeos/switch_access/switch_access.js", | |
| 3055 "../browser/resources/chromeos/switch_access/test_support.js", | |
| 3056 "../browser/resources/chromeos/switch_access/testable_switch_access.js", | |
| 3057 ] | 3054 ] |
| 3058 } | 3055 } |
| 3059 } | 3056 } |
| 3060 | 3057 |
| 3061 test("unit_tests") { | 3058 test("unit_tests") { |
| 3062 sources = [ | 3059 sources = [ |
| 3063 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this | 3060 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this |
| 3064 # dependency is needed to make commit bots run unit_tests on | 3061 # dependency is needed to make commit bots run unit_tests on |
| 3065 # histograms.xml changes. | 3062 # histograms.xml changes. |
| 3066 "../../tools/metrics/histograms/histograms.xml", | 3063 "../../tools/metrics/histograms/histograms.xml", |
| (...skipping 2127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5194 } | 5191 } |
| 5195 | 5192 |
| 5196 if (is_win) { | 5193 if (is_win) { |
| 5197 loadable_module("conflicts_dll") { | 5194 loadable_module("conflicts_dll") { |
| 5198 testonly = true | 5195 testonly = true |
| 5199 sources = [ | 5196 sources = [ |
| 5200 "conflicts/conflicts_dll.cc", | 5197 "conflicts/conflicts_dll.cc", |
| 5201 ] | 5198 ] |
| 5202 } | 5199 } |
| 5203 } | 5200 } |
| OLD | NEW |