| OLD | NEW |
| 1 # Use of this source code is governed by a BSD-style license that can be | 1 # Use of this source code is governed by a BSD-style license that can be |
| 2 # found in the LICENSE file. | 2 # found in the LICENSE file. |
| 3 | 3 |
| 4 import("//extensions/features/features.gni") | 4 import("//extensions/features/features.gni") |
| 5 import("//testing/test.gni") | 5 import("//testing/test.gni") |
| 6 import("//tools/grit/grit_rule.gni") | 6 import("//tools/grit/grit_rule.gni") |
| 7 import("//tools/grit/repack.gni") | 7 import("//tools/grit/repack.gni") |
| 8 | 8 |
| 9 assert(enable_extensions) | 9 assert(enable_extensions) |
| 10 | 10 |
| (...skipping 110 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 121 ] | 121 ] |
| 122 | 122 |
| 123 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 123 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 124 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 124 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| 125 | 125 |
| 126 deps = [ | 126 deps = [ |
| 127 ":extensions_resources", | 127 ":extensions_resources", |
| 128 "//base", | 128 "//base", |
| 129 "//components/cast_certificate:test_support", | 129 "//components/cast_certificate:test_support", |
| 130 "//components/guest_view/browser:test_support", | 130 "//components/guest_view/browser:test_support", |
| 131 "//components/pref_registry:test_support", | |
| 132 "//components/prefs:test_support", | 131 "//components/prefs:test_support", |
| 132 "//components/sync_preferences:test_support", |
| 133 "//content/public/common", | 133 "//content/public/common", |
| 134 "//content/test:test_support", | 134 "//content/test:test_support", |
| 135 "//extensions/browser", | 135 "//extensions/browser", |
| 136 "//extensions/browser/api:api_registration", | 136 "//extensions/browser/api:api_registration", |
| 137 "//extensions/common", | 137 "//extensions/common", |
| 138 "//extensions/common/api", | 138 "//extensions/common/api", |
| 139 "//extensions/test:extensions_features", | 139 "//extensions/test:extensions_features", |
| 140 "//net:test_support", | 140 "//net:test_support", |
| 141 "//testing/gmock", | 141 "//testing/gmock", |
| 142 "//testing/gtest", | 142 "//testing/gtest", |
| (...skipping 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 351 "//testing/gtest", | 351 "//testing/gtest", |
| 352 "//third_party/hunspell", | 352 "//third_party/hunspell", |
| 353 "//third_party/icu", | 353 "//third_party/icu", |
| 354 "//third_party/libpng", | 354 "//third_party/libpng", |
| 355 "//third_party/zlib", | 355 "//third_party/zlib", |
| 356 "//ui/base:test_support", | 356 "//ui/base:test_support", |
| 357 "//ui/resources:ui_test_pak", | 357 "//ui/resources:ui_test_pak", |
| 358 "//ui/web_dialogs:test_support", | 358 "//ui/web_dialogs:test_support", |
| 359 ] | 359 ] |
| 360 } | 360 } |
| OLD | NEW |