Chromium Code Reviews| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//build/module_args/v8.gni") | 9 import("//build/module_args/v8.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 216 "../public/test/test_mojo_service.mojom", | 216 "../public/test/test_mojo_service.mojom", |
| 217 ] | 217 ] |
| 218 } | 218 } |
| 219 | 219 |
| 220 mojom("web_ui_test_mojo_bindings") { | 220 mojom("web_ui_test_mojo_bindings") { |
| 221 sources = [ | 221 sources = [ |
| 222 "data/web_ui_test_mojo_bindings.mojom", | 222 "data/web_ui_test_mojo_bindings.mojom", |
| 223 ] | 223 ] |
| 224 } | 224 } |
| 225 | 225 |
| 226 static_library("telemetry_test_support") { | |
|
Dirk Pranke
2015/09/25 20:16:20
same comment.
Does it make sense to move this tar
aiolos (Not reviewing)
2015/09/25 20:40:07
Done.
| |
| 227 # Generic telemetry deps | |
| 228 data = [ | |
| 229 "//build/android/devil/", | |
| 230 "//build/android/pylib/", | |
| 231 "//build/util/", | |
| 232 "//third_party/WebKit/PerformanceTests/resources/jquery.tablesorter.min.js", | |
| 233 "//third_party/WebKit/PerformanceTests/resources/statistics.js", | |
| 234 "//third_party/flot/jquery.flot.min.js", | |
| 235 "//third_party/webpagereplay/", | |
| 236 "//tools/telemetry/", | |
| 237 ] | |
| 238 } | |
| 239 | |
| 226 if (!is_ios) { | 240 if (!is_ios) { |
| 227 # GYP version //content/content_tests.gypi:layouttest_support_content | 241 # GYP version //content/content_tests.gypi:layouttest_support_content |
| 228 static_library("layouttest_support") { | 242 static_library("layouttest_support") { |
| 229 testonly = true | 243 testonly = true |
| 230 sources = rebase_path( | 244 sources = rebase_path( |
| 231 content_tests_gypi_values.layouttest_support_content_sources, | 245 content_tests_gypi_values.layouttest_support_content_sources, |
| 232 ".", | 246 ".", |
| 233 "//content") | 247 "//content") |
| 234 | 248 |
| 235 deps = [ | 249 deps = [ |
| (...skipping 554 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 790 "//testing/gtest", | 804 "//testing/gtest", |
| 791 "//third_party/WebKit/public:blink", | 805 "//third_party/WebKit/public:blink", |
| 792 "//ui/base", | 806 "//ui/base", |
| 793 "//ui/gfx", | 807 "//ui/gfx", |
| 794 "//ui/gfx/geometry", | 808 "//ui/gfx/geometry", |
| 795 "//ui/gl", | 809 "//ui/gl", |
| 796 "//ui/gl:test_support", | 810 "//ui/gl:test_support", |
| 797 ] | 811 ] |
| 798 } | 812 } |
| 799 } | 813 } |
| OLD | NEW |