| 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 772 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 783 "graphics/CanvasSurfaceLayerBridge.cpp", | 783 "graphics/CanvasSurfaceLayerBridge.cpp", |
| 784 "graphics/CanvasSurfaceLayerBridge.h", | 784 "graphics/CanvasSurfaceLayerBridge.h", |
| 785 "graphics/Color.cpp", | 785 "graphics/Color.cpp", |
| 786 "graphics/Color.h", | 786 "graphics/Color.h", |
| 787 "graphics/ColorSpace.cpp", | 787 "graphics/ColorSpace.cpp", |
| 788 "graphics/ColorSpace.h", | 788 "graphics/ColorSpace.h", |
| 789 "graphics/ColorSpaceProfileData.cpp", | 789 "graphics/ColorSpaceProfileData.cpp", |
| 790 "graphics/ColorSpaceProfileData.h", | 790 "graphics/ColorSpaceProfileData.h", |
| 791 "graphics/CompositingReasons.cpp", | 791 "graphics/CompositingReasons.cpp", |
| 792 "graphics/CompositingReasons.h", | 792 "graphics/CompositingReasons.h", |
| 793 "graphics/CompositorAnimator.h", |
| 793 "graphics/CompositorElementId.cpp", | 794 "graphics/CompositorElementId.cpp", |
| 794 "graphics/CompositorElementId.h", | 795 "graphics/CompositorElementId.h", |
| 795 "graphics/CompositorFilterOperations.cpp", | 796 "graphics/CompositorFilterOperations.cpp", |
| 796 "graphics/CompositorFilterOperations.h", | 797 "graphics/CompositorFilterOperations.h", |
| 797 "graphics/CompositorMutableState.cpp", | 798 "graphics/CompositorMutableState.cpp", |
| 798 "graphics/CompositorMutableState.h", | 799 "graphics/CompositorMutableState.h", |
| 799 "graphics/CompositorMutableStateProvider.cpp", | 800 "graphics/CompositorMutableStateProvider.cpp", |
| 800 "graphics/CompositorMutableStateProvider.h", | 801 "graphics/CompositorMutableStateProvider.h", |
| 801 "graphics/CompositorMutationsTarget.h", | 802 "graphics/CompositorMutationsTarget.h", |
| 802 "graphics/CompositorMutator.h", | 803 "graphics/CompositorMutator.h", |
| (...skipping 1262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2065 "//third_party/WebKit/Source:inside_blink", | 2066 "//third_party/WebKit/Source:inside_blink", |
| 2066 ] | 2067 ] |
| 2067 | 2068 |
| 2068 deps = [ | 2069 deps = [ |
| 2069 ":test_support", | 2070 ":test_support", |
| 2070 "//cc/surfaces:surface_id", | 2071 "//cc/surfaces:surface_id", |
| 2071 "//testing/gmock", | 2072 "//testing/gmock", |
| 2072 "//testing/gtest", | 2073 "//testing/gtest", |
| 2073 ] | 2074 ] |
| 2074 } | 2075 } |
| OLD | NEW |