| 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     "debug/benchmark_instrumentation.cc", |    10     "debug/benchmark_instrumentation.cc", | 
| (...skipping 724 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   735  |   735  | 
|   736 cc_test("cc_unittests") { |   736 cc_test("cc_unittests") { | 
|   737   sources = [ |   737   sources = [ | 
|   738     "base/contiguous_container_unittest.cc", |   738     "base/contiguous_container_unittest.cc", | 
|   739     "base/delayed_unique_notifier_unittest.cc", |   739     "base/delayed_unique_notifier_unittest.cc", | 
|   740     "base/float_quad_unittest.cc", |   740     "base/float_quad_unittest.cc", | 
|   741     "base/histograms_unittest.cc", |   741     "base/histograms_unittest.cc", | 
|   742     "base/index_rect_unittest.cc", |   742     "base/index_rect_unittest.cc", | 
|   743     "base/list_container_unittest.cc", |   743     "base/list_container_unittest.cc", | 
|   744     "base/math_util_unittest.cc", |   744     "base/math_util_unittest.cc", | 
 |   745     "base/pyramid_sequence_unittest.cc", | 
|   745     "base/random_access_list_container_unittest.cc", |   746     "base/random_access_list_container_unittest.cc", | 
|   746     "base/region_unittest.cc", |   747     "base/region_unittest.cc", | 
|   747     "base/rolling_time_delta_history_unittest.cc", |   748     "base/rolling_time_delta_history_unittest.cc", | 
|   748     "base/rtree_unittest.cc", |   749     "base/rtree_unittest.cc", | 
|   749     "base/simple_enclosed_region_unittest.cc", |   750     "base/simple_enclosed_region_unittest.cc", | 
|   750     "base/spiral_iterator_unittest.cc", |   751     "base/spiral_iterator_unittest.cc", | 
|   751     "base/tiling_data_unittest.cc", |   752     "base/tiling_data_unittest.cc", | 
|   752     "base/unique_notifier_unittest.cc", |   753     "base/unique_notifier_unittest.cc", | 
|   753     "debug/micro_benchmark_controller_unittest.cc", |   754     "debug/micro_benchmark_controller_unittest.cc", | 
|   754     "debug/rendering_stats_unittest.cc", |   755     "debug/rendering_stats_unittest.cc", | 
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   992   data = [ |   993   data = [ | 
|   993     "test/data/", |   994     "test/data/", | 
|   994  |   995  | 
|   995     # Needed for isolate script to execute. |   996     # Needed for isolate script to execute. | 
|   996     "//testing/scripts/common.py", |   997     "//testing/scripts/common.py", | 
|   997     "//testing/xvfb.py", |   998     "//testing/xvfb.py", | 
|   998     "//testing/scripts/run_gtest_perf_test.py", |   999     "//testing/scripts/run_gtest_perf_test.py", | 
|   999     "//tools/perf/generate_legacy_perf_dashboard_json.py", |  1000     "//tools/perf/generate_legacy_perf_dashboard_json.py", | 
|  1000   ] |  1001   ] | 
|  1001 } |  1002 } | 
| OLD | NEW |