| 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 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 108 "renderer/test_extensions_renderer_client.cc", | 108 "renderer/test_extensions_renderer_client.cc", |
| 109 "renderer/test_extensions_renderer_client.h", | 109 "renderer/test_extensions_renderer_client.h", |
| 110 "test/background_page_watcher.cc", | 110 "test/background_page_watcher.cc", |
| 111 "test/background_page_watcher.h", | 111 "test/background_page_watcher.h", |
| 112 "test/extension_test_message_listener.cc", | 112 "test/extension_test_message_listener.cc", |
| 113 "test/extension_test_message_listener.h", | 113 "test/extension_test_message_listener.h", |
| 114 "test/extension_test_notification_observer.cc", | 114 "test/extension_test_notification_observer.cc", |
| 115 "test/extension_test_notification_observer.h", | 115 "test/extension_test_notification_observer.h", |
| 116 "test/result_catcher.cc", | 116 "test/result_catcher.cc", |
| 117 "test/result_catcher.h", | 117 "test/result_catcher.h", |
| 118 "test/test_content_browser_client.cc", |
| 119 "test/test_content_browser_client.h", |
| 118 "test/test_content_utility_client.cc", | 120 "test/test_content_utility_client.cc", |
| 119 "test/test_content_utility_client.h", | 121 "test/test_content_utility_client.h", |
| 120 "test/test_extensions_client.cc", | 122 "test/test_extensions_client.cc", |
| 121 "test/test_extensions_client.h", | 123 "test/test_extensions_client.h", |
| 122 "test/test_permission_message_provider.cc", | 124 "test/test_permission_message_provider.cc", |
| 123 "test/test_permission_message_provider.h", | 125 "test/test_permission_message_provider.h", |
| 124 ] | 126 ] |
| 125 | 127 |
| 126 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 128 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 127 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] | 129 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 352 "//testing/gtest", | 354 "//testing/gtest", |
| 353 "//third_party/hunspell", | 355 "//third_party/hunspell", |
| 354 "//third_party/icu", | 356 "//third_party/icu", |
| 355 "//third_party/libpng", | 357 "//third_party/libpng", |
| 356 "//third_party/zlib", | 358 "//third_party/zlib", |
| 357 "//ui/base:test_support", | 359 "//ui/base:test_support", |
| 358 "//ui/resources:ui_test_pak", | 360 "//ui/resources:ui_test_pak", |
| 359 "//ui/web_dialogs:test_support", | 361 "//ui/web_dialogs:test_support", |
| 360 ] | 362 ] |
| 361 } | 363 } |
| OLD | NEW |