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 # TODO(rockot) bug 505926: Don't include chrome files from here. | 5 # TODO(rockot) bug 505926: Don't include chrome files from here. |
6 # See chrome_browser_tests_extensions_sources below | 6 # See chrome_browser_tests_extensions_sources below |
7 import("//chrome/chrome_tests.gni") | 7 import("//chrome/chrome_tests.gni") |
8 import("//extensions/extensions.gni") | 8 import("//extensions/extensions.gni") |
9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
74 sources = rebase_path(extensions_gypi_values.extensions_test_support_sources, | 74 sources = rebase_path(extensions_gypi_values.extensions_test_support_sources, |
75 ".", | 75 ".", |
76 "//extensions") | 76 "//extensions") |
77 | 77 |
78 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 78 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
79 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 79 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
80 | 80 |
81 deps = [ | 81 deps = [ |
82 ":extensions_resources", | 82 ":extensions_resources", |
83 "//base", | 83 "//base", |
| 84 "//components/cast_certificate:test_support", |
84 "//components/guest_view/browser:test_support", | 85 "//components/guest_view/browser:test_support", |
85 "//components/pref_registry:test_support", | 86 "//components/pref_registry:test_support", |
86 "//components/prefs:test_support", | 87 "//components/prefs:test_support", |
87 "//content/public/common", | 88 "//content/public/common", |
88 "//content/test:test_support", | 89 "//content/test:test_support", |
89 "//extensions/browser", | 90 "//extensions/browser", |
90 "//extensions/common", | 91 "//extensions/common", |
91 "//extensions/common/api", | 92 "//extensions/common/api", |
92 "//extensions/common/api:api_registration", | 93 "//extensions/common/api:api_registration", |
93 "//net:test_support", | 94 "//net:test_support", |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 # TODO(rockot): DisplayInfoProvider::Create() is only implemented in Chrome | 149 # TODO(rockot): DisplayInfoProvider::Create() is only implemented in Chrome |
149 # and app_shell. This is wrong. | 150 # and app_shell. This is wrong. |
150 "shell/browser/shell_display_info_provider.cc", | 151 "shell/browser/shell_display_info_provider.cc", |
151 ] | 152 ] |
152 | 153 |
153 configs += [ "//build/config:precompiled_headers" ] | 154 configs += [ "//build/config:precompiled_headers" ] |
154 | 155 |
155 data = [ | 156 data = [ |
156 "test/data/", | 157 "test/data/", |
157 "//chrome/test/data/extensions/", | 158 "//chrome/test/data/extensions/", |
| 159 "//components/test/data/cast_certificate/", |
158 "$root_out_dir/extensions_shell_and_test.pak", | 160 "$root_out_dir/extensions_shell_and_test.pak", |
159 ] | 161 ] |
160 | 162 |
161 deps = [ | 163 deps = [ |
162 ":extensions_resources", | 164 ":extensions_resources", |
163 ":shell_and_test_pak", | 165 ":shell_and_test_pak", |
164 ":test_support", | 166 ":test_support", |
165 "//base", | 167 "//base", |
166 "//base/test:test_support", | 168 "//base/test:test_support", |
167 "//components/keyed_service/content", | 169 "//components/keyed_service/content", |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 "//testing/gtest", | 369 "//testing/gtest", |
368 "//third_party/hunspell", | 370 "//third_party/hunspell", |
369 "//third_party/icu", | 371 "//third_party/icu", |
370 "//third_party/libpng", | 372 "//third_party/libpng", |
371 "//third_party/zlib", | 373 "//third_party/zlib", |
372 "//ui/base:test_support", | 374 "//ui/base:test_support", |
373 "//ui/resources:ui_test_pak", | 375 "//ui/resources:ui_test_pak", |
374 "//ui/web_dialogs:test_support", | 376 "//ui/web_dialogs:test_support", |
375 ] | 377 ] |
376 } | 378 } |
OLD | NEW |