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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
151 # TODO(rockot): DisplayInfoProvider::Create() is only implemented in Chrome | 152 # TODO(rockot): DisplayInfoProvider::Create() is only implemented in Chrome |
152 # and app_shell. This is wrong. | 153 # and app_shell. This is wrong. |
153 "shell/browser/shell_display_info_provider.cc", | 154 "shell/browser/shell_display_info_provider.cc", |
154 ] | 155 ] |
155 | 156 |
156 configs += [ "//build/config:precompiled_headers" ] | 157 configs += [ "//build/config:precompiled_headers" ] |
157 | 158 |
158 data = [ | 159 data = [ |
159 "test/data/", | 160 "test/data/", |
160 "//chrome/test/data/extensions/", | 161 "//chrome/test/data/extensions/", |
| 162 "//components/test/data/cast_certificate/", |
161 "$root_out_dir/extensions_shell_and_test.pak", | 163 "$root_out_dir/extensions_shell_and_test.pak", |
162 ] | 164 ] |
163 | 165 |
164 deps = [ | 166 deps = [ |
165 ":extensions_resources", | 167 ":extensions_resources", |
166 ":shell_and_test_pak", | 168 ":shell_and_test_pak", |
167 ":test_support", | 169 ":test_support", |
168 "//base", | 170 "//base", |
169 "//base/test:test_support", | 171 "//base/test:test_support", |
170 "//components/keyed_service/content", | 172 "//components/keyed_service/content", |
(...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
370 "//testing/gtest", | 372 "//testing/gtest", |
371 "//third_party/hunspell", | 373 "//third_party/hunspell", |
372 "//third_party/icu", | 374 "//third_party/icu", |
373 "//third_party/libpng", | 375 "//third_party/libpng", |
374 "//third_party/zlib", | 376 "//third_party/zlib", |
375 "//ui/base:test_support", | 377 "//ui/base:test_support", |
376 "//ui/resources:ui_test_pak", | 378 "//ui/resources:ui_test_pak", |
377 "//ui/web_dialogs:test_support", | 379 "//ui/web_dialogs:test_support", |
378 ] | 380 ] |
379 } | 381 } |
OLD | NEW |