| 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/libfuzzer/fuzzer_test.gni") | 7 import("//testing/libfuzzer/fuzzer_test.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 import("//third_party/WebKit/public/public_features.gni") | 9 import("//third_party/WebKit/public/public_features.gni") |
| 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") | 10 import("//third_party/WebKit/Source/build/scripts/scripts.gni") |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 "PartitionAllocMemoryDumpProvider.h", | 312 "PartitionAllocMemoryDumpProvider.h", |
| 313 "PasteMode.h", | 313 "PasteMode.h", |
| 314 "PlatformEvent.h", | 314 "PlatformEvent.h", |
| 315 "PlatformInstrumentation.cpp", | 315 "PlatformInstrumentation.cpp", |
| 316 "PlatformInstrumentation.h", | 316 "PlatformInstrumentation.h", |
| 317 "PlatformMouseEvent.h", | 317 "PlatformMouseEvent.h", |
| 318 "PlatformResourceLoader.cpp", | 318 "PlatformResourceLoader.cpp", |
| 319 "PlatformResourceLoader.h", | 319 "PlatformResourceLoader.h", |
| 320 "PlatformTouchEvent.h", | 320 "PlatformTouchEvent.h", |
| 321 "PlatformTouchPoint.h", | 321 "PlatformTouchPoint.h", |
| 322 "PlatformWheelEvent.h", | |
| 323 "PluginScriptForbiddenScope.cpp", | 322 "PluginScriptForbiddenScope.cpp", |
| 324 "PluginScriptForbiddenScope.h", | 323 "PluginScriptForbiddenScope.h", |
| 325 "PopupMenu.h", | 324 "PopupMenu.h", |
| 326 "Prerender.cpp", | 325 "Prerender.cpp", |
| 327 "Prerender.h", | 326 "Prerender.h", |
| 328 "PrerenderClient.h", | 327 "PrerenderClient.h", |
| 329 "ScopedOrientationChangeIndicator.cpp", | 328 "ScopedOrientationChangeIndicator.cpp", |
| 330 "ScopedOrientationChangeIndicator.h", | 329 "ScopedOrientationChangeIndicator.h", |
| 331 "ScriptForbiddenScope.cpp", | 330 "ScriptForbiddenScope.cpp", |
| 332 "ScriptForbiddenScope.h", | 331 "ScriptForbiddenScope.h", |
| (...skipping 14 matching lines...) Expand all Loading... |
| 347 "Timer.h", | 346 "Timer.h", |
| 348 "UUID.cpp", | 347 "UUID.cpp", |
| 349 "UUID.h", | 348 "UUID.h", |
| 350 "UserGestureIndicator.cpp", | 349 "UserGestureIndicator.cpp", |
| 351 "UserGestureIndicator.h", | 350 "UserGestureIndicator.h", |
| 352 "WaitableEvent.cpp", | 351 "WaitableEvent.cpp", |
| 353 "WaitableEvent.h", | 352 "WaitableEvent.h", |
| 354 "WebFrameScheduler.h", | 353 "WebFrameScheduler.h", |
| 355 "WebGestureEvent.cpp", | 354 "WebGestureEvent.cpp", |
| 356 "WebIconSizesParser.cpp", | 355 "WebIconSizesParser.cpp", |
| 356 "WebMouseEvent.cpp", |
| 357 "WebMouseWheelEvent.cpp", |
| 357 "WebScheduler.cpp", | 358 "WebScheduler.cpp", |
| 358 "WebTaskRunner.cpp", | 359 "WebTaskRunner.cpp", |
| 359 "WebTaskRunner.h", | 360 "WebTaskRunner.h", |
| 360 "WebTextInputInfo.cpp", | 361 "WebTextInputInfo.cpp", |
| 361 "WebThread.cpp", | 362 "WebThread.cpp", |
| 362 "WebThreadSupportingGC.cpp", | 363 "WebThreadSupportingGC.cpp", |
| 363 "WebThreadSupportingGC.h", | 364 "WebThreadSupportingGC.h", |
| 364 "WebURLLoader.cpp", | 365 "WebURLLoader.cpp", |
| 365 "Widget.cpp", | 366 "Widget.cpp", |
| 366 "Widget.h", | 367 "Widget.h", |
| (...skipping 1703 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2070 "//third_party/WebKit/Source:config", | 2071 "//third_party/WebKit/Source:config", |
| 2071 "//third_party/WebKit/Source:inside_blink", | 2072 "//third_party/WebKit/Source:inside_blink", |
| 2072 ] | 2073 ] |
| 2073 | 2074 |
| 2074 deps = [ | 2075 deps = [ |
| 2075 ":test_support", | 2076 ":test_support", |
| 2076 "//testing/gmock", | 2077 "//testing/gmock", |
| 2077 "//testing/gtest", | 2078 "//testing/gtest", |
| 2078 ] | 2079 ] |
| 2079 } | 2080 } |
| OLD | NEW |