| 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 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 rebase_path(extensions_tests_gypi_values.extensions_unittests_sources, | 141 rebase_path(extensions_tests_gypi_values.extensions_unittests_sources, |
| 142 ".", | 142 ".", |
| 143 "//extensions") | 143 "//extensions") |
| 144 | 144 |
| 145 sources += [ | 145 sources += [ |
| 146 # TODO(rockot): DisplayInfoProvider::Create() is only implemented in Chrome | 146 # TODO(rockot): DisplayInfoProvider::Create() is only implemented in Chrome |
| 147 # and app_shell. This is wrong. | 147 # and app_shell. This is wrong. |
| 148 "shell/browser/shell_display_info_provider.cc", | 148 "shell/browser/shell_display_info_provider.cc", |
| 149 ] | 149 ] |
| 150 | 150 |
| 151 configs += [ "//build/config:precompiled_headers" ] | |
| 152 | |
| 153 deps = [ | 151 deps = [ |
| 154 ":extensions_resources", | 152 ":extensions_resources", |
| 155 ":shell_and_test_pak", | 153 ":shell_and_test_pak", |
| 156 ":test_support", | 154 ":test_support", |
| 157 "//base", | 155 "//base", |
| 158 "//base:prefs_test_support", | 156 "//base:prefs_test_support", |
| 159 "//base/test:test_support", | 157 "//base/test:test_support", |
| 160 "//components/keyed_service/content", | 158 "//components/keyed_service/content", |
| 161 "//components/user_prefs", | 159 "//components/user_prefs", |
| 162 "//content/test:test_support", | 160 "//content/test:test_support", |
| (...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 334 "//testing/gtest", | 332 "//testing/gtest", |
| 335 "//third_party/hunspell", | 333 "//third_party/hunspell", |
| 336 "//third_party/icu", | 334 "//third_party/icu", |
| 337 "//third_party/libpng", | 335 "//third_party/libpng", |
| 338 "//third_party/zlib", | 336 "//third_party/zlib", |
| 339 "//ui/base:test_support", | 337 "//ui/base:test_support", |
| 340 "//ui/resources:ui_test_pak", | 338 "//ui/resources:ui_test_pak", |
| 341 "//ui/web_dialogs:test_support", | 339 "//ui/web_dialogs:test_support", |
| 342 ] | 340 ] |
| 343 } | 341 } |
| OLD | NEW |