| 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 1133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1144 "image-decoders/png/PNGImageDecoder.cpp", | 1144 "image-decoders/png/PNGImageDecoder.cpp", |
| 1145 "image-decoders/png/PNGImageDecoder.h", | 1145 "image-decoders/png/PNGImageDecoder.h", |
| 1146 "image-decoders/png/PNGImageReader.cpp", | 1146 "image-decoders/png/PNGImageReader.cpp", |
| 1147 "image-decoders/png/PNGImageReader.h", | 1147 "image-decoders/png/PNGImageReader.h", |
| 1148 "image-decoders/webp/WEBPImageDecoder.cpp", | 1148 "image-decoders/webp/WEBPImageDecoder.cpp", |
| 1149 "image-decoders/webp/WEBPImageDecoder.h", | 1149 "image-decoders/webp/WEBPImageDecoder.h", |
| 1150 "image-encoders/ImageEncoder.cpp", | 1150 "image-encoders/ImageEncoder.cpp", |
| 1151 "image-encoders/ImageEncoder.h", | 1151 "image-encoders/ImageEncoder.h", |
| 1152 "image-encoders/ImageEncoderUtils.cpp", | 1152 "image-encoders/ImageEncoderUtils.cpp", |
| 1153 "image-encoders/ImageEncoderUtils.h", | 1153 "image-encoders/ImageEncoderUtils.h", |
| 1154 "image-encoders/PNGImageEncoder.cpp", | |
| 1155 "image-encoders/PNGImageEncoder.h", | |
| 1156 "image-encoders/WEBPImageEncoder.cpp", | |
| 1157 "image-encoders/WEBPImageEncoder.h", | |
| 1158 "instrumentation/PlatformInstrumentation.cpp", | 1154 "instrumentation/PlatformInstrumentation.cpp", |
| 1159 "instrumentation/PlatformInstrumentation.h", | 1155 "instrumentation/PlatformInstrumentation.h", |
| 1160 "instrumentation/tracing/MemoryCacheDumpProvider.cpp", | 1156 "instrumentation/tracing/MemoryCacheDumpProvider.cpp", |
| 1161 "instrumentation/tracing/MemoryCacheDumpProvider.h", | 1157 "instrumentation/tracing/MemoryCacheDumpProvider.h", |
| 1162 "instrumentation/tracing/TraceEvent.h", | 1158 "instrumentation/tracing/TraceEvent.h", |
| 1163 "instrumentation/tracing/TracedValue.cpp", | 1159 "instrumentation/tracing/TracedValue.cpp", |
| 1164 "instrumentation/tracing/TracedValue.h", | 1160 "instrumentation/tracing/TracedValue.h", |
| 1165 "instrumentation/tracing/web_memory_allocator_dump.cc", | 1161 "instrumentation/tracing/web_memory_allocator_dump.cc", |
| 1166 "instrumentation/tracing/web_memory_allocator_dump.h", | 1162 "instrumentation/tracing/web_memory_allocator_dump.h", |
| 1167 "instrumentation/tracing/web_process_memory_dump.cc", | 1163 "instrumentation/tracing/web_process_memory_dump.cc", |
| (...skipping 1070 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2238 "//third_party/WebKit/Source:config", | 2234 "//third_party/WebKit/Source:config", |
| 2239 "//third_party/WebKit/Source:inside_blink", | 2235 "//third_party/WebKit/Source:inside_blink", |
| 2240 ] | 2236 ] |
| 2241 | 2237 |
| 2242 deps = [ | 2238 deps = [ |
| 2243 ":test_support", | 2239 ":test_support", |
| 2244 "//testing/gmock", | 2240 "//testing/gmock", |
| 2245 "//testing/gtest", | 2241 "//testing/gtest", |
| 2246 ] | 2242 ] |
| 2247 } | 2243 } |
| OLD | NEW |