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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//cc/cc.gni") | 6 import("//cc/cc.gni") |
7 | 7 |
8 cc_component("cc") { | 8 cc_component("cc") { |
9 sources = [ | 9 sources = [ |
10 "blimp/client_picture_cache.h", | 10 "blimp/client_picture_cache.h", |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
225 "output/output_surface.cc", | 225 "output/output_surface.cc", |
226 "output/output_surface.h", | 226 "output/output_surface.h", |
227 "output/output_surface_client.h", | 227 "output/output_surface_client.h", |
228 "output/output_surface_frame.cc", | 228 "output/output_surface_frame.cc", |
229 "output/output_surface_frame.h", | 229 "output/output_surface_frame.h", |
230 "output/overlay_candidate.cc", | 230 "output/overlay_candidate.cc", |
231 "output/overlay_candidate.h", | 231 "output/overlay_candidate.h", |
232 "output/overlay_candidate_validator.h", | 232 "output/overlay_candidate_validator.h", |
233 "output/overlay_processor.cc", | 233 "output/overlay_processor.cc", |
234 "output/overlay_processor.h", | 234 "output/overlay_processor.h", |
| 235 "output/overlay_strategy_cast_underlay.cc", |
| 236 "output/overlay_strategy_cast_underlay.h", |
235 "output/overlay_strategy_fullscreen.cc", | 237 "output/overlay_strategy_fullscreen.cc", |
236 "output/overlay_strategy_fullscreen.h", | 238 "output/overlay_strategy_fullscreen.h", |
237 "output/overlay_strategy_single_on_top.cc", | 239 "output/overlay_strategy_single_on_top.cc", |
238 "output/overlay_strategy_single_on_top.h", | 240 "output/overlay_strategy_single_on_top.h", |
239 "output/overlay_strategy_underlay.cc", | 241 "output/overlay_strategy_underlay.cc", |
240 "output/overlay_strategy_underlay.h", | 242 "output/overlay_strategy_underlay.h", |
241 "output/program_binding.cc", | 243 "output/program_binding.cc", |
242 "output/program_binding.h", | 244 "output/program_binding.h", |
243 "output/render_surface_filters.cc", | 245 "output/render_surface_filters.cc", |
244 "output/render_surface_filters.h", | 246 "output/render_surface_filters.h", |
(...skipping 789 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1034 data = [ | 1036 data = [ |
1035 "test/data/", | 1037 "test/data/", |
1036 | 1038 |
1037 # Needed for isolate script to execute. | 1039 # Needed for isolate script to execute. |
1038 "//testing/scripts/common.py", | 1040 "//testing/scripts/common.py", |
1039 "//testing/xvfb.py", | 1041 "//testing/xvfb.py", |
1040 "//testing/scripts/run_gtest_perf_test.py", | 1042 "//testing/scripts/run_gtest_perf_test.py", |
1041 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1043 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
1042 ] | 1044 ] |
1043 } | 1045 } |
OLD | NEW |