| 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 2999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3010 "../browser/resources/google_now/utility.js", | 3010 "../browser/resources/google_now/utility.js", |
| 3011 "../browser/resources/google_now/utility_test_util.js", | 3011 "../browser/resources/google_now/utility_test_util.js", |
| 3012 "../browser/resources/md_downloads/action_service.js", | 3012 "../browser/resources/md_downloads/action_service.js", |
| 3013 "../browser/resources/print_preview/data/measurement_system.js", | 3013 "../browser/resources/print_preview/data/measurement_system.js", |
| 3014 "../browser/resources/print_preview/print_preview_utils.js", | 3014 "../browser/resources/print_preview/print_preview_utils.js", |
| 3015 "../renderer/resources/extensions/notifications_custom_bindings.js", | 3015 "../renderer/resources/extensions/notifications_custom_bindings.js", |
| 3016 "../renderer/resources/extensions/notifications_test_util.js", | 3016 "../renderer/resources/extensions/notifications_test_util.js", |
| 3017 "//ui/webui/resources/js/cr.js", | 3017 "//ui/webui/resources/js/cr.js", |
| 3018 ] | 3018 ] |
| 3019 if (is_chromeos) { | 3019 if (is_chromeos) { |
| 3020 sources += [ "../browser/resources/chromeos/braille_ime/braille_ime_unittest
.gtestjs" ] | 3020 sources += [ |
| 3021 extra_js_files += | 3021 "../browser/resources/chromeos/braille_ime/braille_ime_unittest.gtestjs", |
| 3022 [ "../browser/resources/chromeos/braille_ime/braille_ime.js" ] | 3022 "../browser/resources/chromeos/select_to_speak/select_to_speak_unittest.gt
estjs", |
| 3023 ] |
| 3024 extra_js_files += [ |
| 3025 "../browser/resources/chromeos/braille_ime/braille_ime.js", |
| 3026 "../browser/resources/chromeos/select_to_speak/select_to_speak.js", |
| 3027 "../browser/resources/chromeos/select_to_speak/test_support.js", |
| 3028 ] |
| 3023 } | 3029 } |
| 3024 } | 3030 } |
| 3025 | 3031 |
| 3026 test("unit_tests") { | 3032 test("unit_tests") { |
| 3027 sources = [ | 3033 sources = [ |
| 3028 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this | 3034 # histograms.xml is analyzed by AboutFlagsHistogramTest, so this |
| 3029 # dependency is needed to make commit bots run unit_tests on | 3035 # dependency is needed to make commit bots run unit_tests on |
| 3030 # histograms.xml changes. | 3036 # histograms.xml changes. |
| 3031 "../../tools/metrics/histograms/histograms.xml", | 3037 "../../tools/metrics/histograms/histograms.xml", |
| 3032 | 3038 |
| (...skipping 2092 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5125 } | 5131 } |
| 5126 | 5132 |
| 5127 if (is_win) { | 5133 if (is_win) { |
| 5128 loadable_module("conflicts_dll") { | 5134 loadable_module("conflicts_dll") { |
| 5129 testonly = true | 5135 testonly = true |
| 5130 sources = [ | 5136 sources = [ |
| 5131 "conflicts/conflicts_dll.cc", | 5137 "conflicts/conflicts_dll.cc", |
| 5132 ] | 5138 ] |
| 5133 } | 5139 } |
| 5134 } | 5140 } |
| OLD | NEW |