| 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 945 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 956 | 956 |
| 957 deps = [ | 957 deps = [ |
| 958 ":cc", | 958 ":cc", |
| 959 ":test_support", | 959 ":test_support", |
| 960 "//base/test:test_support", | 960 "//base/test:test_support", |
| 961 "//cc/ipc", | 961 "//cc/ipc", |
| 962 "//cc/ipc:test_interfaces", | 962 "//cc/ipc:test_interfaces", |
| 963 "//cc/proto", | 963 "//cc/proto", |
| 964 "//cc/surfaces", | 964 "//cc/surfaces", |
| 965 "//cc/surfaces:surface_id", | 965 "//cc/surfaces:surface_id", |
| 966 "//cc/surfaces:surfaces", |
| 966 "//gpu", | 967 "//gpu", |
| 967 "//gpu:test_support", | 968 "//gpu:test_support", |
| 968 "//gpu/command_buffer/client:gles2_interface", | 969 "//gpu/command_buffer/client:gles2_interface", |
| 969 "//gpu/command_buffer/common:gles2_utils", | 970 "//gpu/command_buffer/common:gles2_utils", |
| 970 "//media", | 971 "//media", |
| 971 "//mojo/edk/system", | 972 "//mojo/edk/system", |
| 972 "//mojo/public/cpp/bindings", | 973 "//mojo/public/cpp/bindings", |
| 973 "//testing/gmock", | 974 "//testing/gmock", |
| 974 "//testing/gtest", | 975 "//testing/gtest", |
| 975 "//ui/events:events_base", | 976 "//ui/events:events_base", |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1036 data = [ | 1037 data = [ |
| 1037 "test/data/", | 1038 "test/data/", |
| 1038 | 1039 |
| 1039 # Needed for isolate script to execute. | 1040 # Needed for isolate script to execute. |
| 1040 "//testing/scripts/common.py", | 1041 "//testing/scripts/common.py", |
| 1041 "//testing/xvfb.py", | 1042 "//testing/xvfb.py", |
| 1042 "//testing/scripts/run_gtest_perf_test.py", | 1043 "//testing/scripts/run_gtest_perf_test.py", |
| 1043 "//tools/perf/generate_legacy_perf_dashboard_json.py", | 1044 "//tools/perf/generate_legacy_perf_dashboard_json.py", |
| 1044 ] | 1045 ] |
| 1045 } | 1046 } |
| OLD | NEW |