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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
537 | 537 |
538 if (current_cpu == "x86" || current_cpu == "x64") { | 538 if (current_cpu == "x86" || current_cpu == "x64") { |
539 sources += [ | 539 sources += [ |
540 "raster/texture_compressor_etc1_sse.cc", | 540 "raster/texture_compressor_etc1_sse.cc", |
541 "raster/texture_compressor_etc1_sse.h", | 541 "raster/texture_compressor_etc1_sse.h", |
542 ] | 542 ] |
543 } | 543 } |
544 | 544 |
545 public_deps = [ | 545 public_deps = [ |
546 "//cc/base", | 546 "//cc/base", |
547 "//cc/paint", | |
danakj
2017/01/20 23:34:13
Hm, is this really what you want? It does match th
enne (OOO)
2017/01/24 01:51:27
Yeah. cc/paint is in the public interface of cc.
danakj
2017/01/24 15:26:41
Pepper probably uses cc and not cc/paint for examp
| |
547 "//skia", | 548 "//skia", |
548 ] | 549 ] |
549 deps = [ | 550 deps = [ |
550 "//base", | 551 "//base", |
551 "//base/third_party/dynamic_annotations", | 552 "//base/third_party/dynamic_annotations", |
552 "//cc/proto", | 553 "//cc/proto", |
553 "//cc/surfaces:surface_id", | 554 "//cc/surfaces:surface_id", |
554 "//gpu", | 555 "//gpu", |
555 "//gpu/command_buffer/client:gles2_implementation", | 556 "//gpu/command_buffer/client:gles2_implementation", |
556 "//gpu/command_buffer/client:gles2_interface", | 557 "//gpu/command_buffer/client:gles2_interface", |
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1043 data = [ | 1044 data = [ |
1044 "test/data/", | 1045 "test/data/", |
1045 | 1046 |
1046 # Needed for isolate script to execute. | 1047 # Needed for isolate script to execute. |
1047 "//testing/scripts/common.py", | 1048 "//testing/scripts/common.py", |
1048 "//testing/xvfb.py", | 1049 "//testing/xvfb.py", |
1049 "//testing/scripts/run_gtest_perf_test.py", | 1050 "//testing/scripts/run_gtest_perf_test.py", |
1050 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1051 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
1051 ] | 1052 ] |
1052 } | 1053 } |
OLD | NEW |