Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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/compiler/compiler.gni") | |
|
yzshen1
2015/11/19 22:00:41
I will make sure I remove this file when the CL is
| |
| 6 | |
| 5 group("telemetry_chrome_test") { | 7 group("telemetry_chrome_test") { |
| 6 deps = [ | 8 deps = [ |
| 7 "//tools/telemetry:telemetry_test_support", | 9 "//tools/telemetry:telemetry_test_support", |
| 8 ] | 10 ] |
| 9 | 11 |
| 10 data_deps = [ | 12 data_deps = [ |
| 11 # TODO(kbr): this used to be "//chrome". Had to change this to | 13 # TODO(kbr): this used to be "//chrome". Had to change this to |
| 12 # chrome_initial temporarily to work around crbug.com/536192. | 14 # chrome_initial temporarily to work around crbug.com/536192. |
| 13 "//chrome:chrome_initial", | 15 "//chrome:chrome_initial", |
| 14 "//tools/telemetry:bitmaptools", | 16 "//tools/telemetry:bitmaptools", |
| (...skipping 18 matching lines...) Expand all Loading... | |
| 33 if (is_component_build) { | 35 if (is_component_build) { |
| 34 data += [ | 36 data += [ |
| 35 "$root_out_dir/base.dll.pdb", | 37 "$root_out_dir/base.dll.pdb", |
| 36 "$root_out_dir/blink_platform.dll.pdb", | 38 "$root_out_dir/blink_platform.dll.pdb", |
| 37 "$root_out_dir/blink_web.dll.pdb", | 39 "$root_out_dir/blink_web.dll.pdb", |
| 38 "$root_out_dir/content.dll.pdb", | 40 "$root_out_dir/content.dll.pdb", |
| 39 ] | 41 ] |
| 40 } | 42 } |
| 41 } | 43 } |
| 42 } | 44 } |
| OLD | NEW |