| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//build/module_args/v8.gni") | 8 import("//build/module_args/v8.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 10 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| (...skipping 296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 307 "//ui/gfx", | 307 "//ui/gfx", |
| 308 "//ui/gfx/geometry", | 308 "//ui/gfx/geometry", |
| 309 "//ui/gl", | 309 "//ui/gl", |
| 310 "//ui/resources", | 310 "//ui/resources", |
| 311 "//ui/shell_dialogs", | 311 "//ui/shell_dialogs", |
| 312 "//ui/snapshot", | 312 "//ui/snapshot", |
| 313 ] | 313 ] |
| 314 | 314 |
| 315 data_deps = [] | 315 data_deps = [] |
| 316 | 316 |
| 317 if (!is_chromeos) { | |
| 318 sources -= | |
| 319 [ "../browser/web_contents/touch_editable_impl_aura_browsertest.cc" ] | |
| 320 } | |
| 321 | |
| 322 if (is_win) { | 317 if (is_win) { |
| 323 sources += rebase_path( | 318 sources += rebase_path( |
| 324 content_tests_gypi_values.content_browsertests_win_sources, | 319 content_tests_gypi_values.content_browsertests_win_sources, |
| 325 ".", | 320 ".", |
| 326 "//content") | 321 "//content") |
| 327 | 322 |
| 328 # TODO(GYP) Windows support | 323 # TODO(GYP) Windows support |
| 329 # 'resource_include_dirs': [ | 324 # 'resource_include_dirs': [ |
| 330 # '<(SHARED_INTERMEDIATE_DIR)/webkit', | 325 # '<(SHARED_INTERMEDIATE_DIR)/webkit', |
| 331 # ], | 326 # ], |
| (...skipping 376 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 708 "//content/public/common", | 703 "//content/public/common", |
| 709 "//testing/gtest", | 704 "//testing/gtest", |
| 710 "//third_party/WebKit/public:blink", | 705 "//third_party/WebKit/public:blink", |
| 711 "//ui/base", | 706 "//ui/base", |
| 712 "//ui/gfx", | 707 "//ui/gfx", |
| 713 "//ui/gfx/geometry", | 708 "//ui/gfx/geometry", |
| 714 "//ui/gl", | 709 "//ui/gl", |
| 715 ] | 710 ] |
| 716 } | 711 } |
| 717 } | 712 } |
| OLD | NEW |