| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 "MemoryCoordinator.h", | 305 "MemoryCoordinator.h", |
| 306 "PODArena.h", | 306 "PODArena.h", |
| 307 "PODFreeListArena.h", | 307 "PODFreeListArena.h", |
| 308 "PODInterval.h", | 308 "PODInterval.h", |
| 309 "PODIntervalTree.h", | 309 "PODIntervalTree.h", |
| 310 "PODRedBlackTree.h", | 310 "PODRedBlackTree.h", |
| 311 "PartitionAllocMemoryDumpProvider.cpp", | 311 "PartitionAllocMemoryDumpProvider.cpp", |
| 312 "PartitionAllocMemoryDumpProvider.h", | 312 "PartitionAllocMemoryDumpProvider.h", |
| 313 "PasteMode.h", | 313 "PasteMode.h", |
| 314 "PlatformEvent.h", | 314 "PlatformEvent.h", |
| 315 "PlatformGestureEvent.h", | |
| 316 "PlatformInstrumentation.cpp", | 315 "PlatformInstrumentation.cpp", |
| 317 "PlatformInstrumentation.h", | 316 "PlatformInstrumentation.h", |
| 318 "PlatformMouseEvent.h", | 317 "PlatformMouseEvent.h", |
| 319 "PlatformResourceLoader.cpp", | 318 "PlatformResourceLoader.cpp", |
| 320 "PlatformResourceLoader.h", | 319 "PlatformResourceLoader.h", |
| 321 "PlatformTouchEvent.h", | 320 "PlatformTouchEvent.h", |
| 322 "PlatformTouchPoint.h", | 321 "PlatformTouchPoint.h", |
| 323 "PlatformWheelEvent.h", | 322 "PlatformWheelEvent.h", |
| 324 "PluginScriptForbiddenScope.cpp", | 323 "PluginScriptForbiddenScope.cpp", |
| 325 "PluginScriptForbiddenScope.h", | 324 "PluginScriptForbiddenScope.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 346 "ThemeTypes.h", | 345 "ThemeTypes.h", |
| 347 "Timer.cpp", | 346 "Timer.cpp", |
| 348 "Timer.h", | 347 "Timer.h", |
| 349 "UUID.cpp", | 348 "UUID.cpp", |
| 350 "UUID.h", | 349 "UUID.h", |
| 351 "UserGestureIndicator.cpp", | 350 "UserGestureIndicator.cpp", |
| 352 "UserGestureIndicator.h", | 351 "UserGestureIndicator.h", |
| 353 "WaitableEvent.cpp", | 352 "WaitableEvent.cpp", |
| 354 "WaitableEvent.h", | 353 "WaitableEvent.h", |
| 355 "WebFrameScheduler.h", | 354 "WebFrameScheduler.h", |
| 355 "WebGestureEvent.cpp", |
| 356 "WebIconSizesParser.cpp", | 356 "WebIconSizesParser.cpp", |
| 357 "WebScheduler.cpp", | 357 "WebScheduler.cpp", |
| 358 "WebTaskRunner.cpp", | 358 "WebTaskRunner.cpp", |
| 359 "WebTaskRunner.h", | 359 "WebTaskRunner.h", |
| 360 "WebTextInputInfo.cpp", | 360 "WebTextInputInfo.cpp", |
| 361 "WebThread.cpp", | 361 "WebThread.cpp", |
| 362 "WebThreadSupportingGC.cpp", | 362 "WebThreadSupportingGC.cpp", |
| 363 "WebThreadSupportingGC.h", | 363 "WebThreadSupportingGC.h", |
| 364 "WebURLLoader.cpp", | 364 "WebURLLoader.cpp", |
| 365 "Widget.cpp", | 365 "Widget.cpp", |
| (...skipping 1704 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2070 "//third_party/WebKit/Source:inside_blink", | 2070 "//third_party/WebKit/Source:inside_blink", |
| 2071 ] | 2071 ] |
| 2072 | 2072 |
| 2073 deps = [ | 2073 deps = [ |
| 2074 ":test_support", | 2074 ":test_support", |
| 2075 "//cc/surfaces:surface_id", | 2075 "//cc/surfaces:surface_id", |
| 2076 "//testing/gmock", | 2076 "//testing/gmock", |
| 2077 "//testing/gtest", | 2077 "//testing/gtest", |
| 2078 ] | 2078 ] |
| 2079 } | 2079 } |
| OLD | NEW |