| 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 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 "//ui/gfx", | 306 "//ui/gfx", |
| 307 "//ui/gfx/geometry", | 307 "//ui/gfx/geometry", |
| 308 "//ui/gl", | 308 "//ui/gl", |
| 309 "//ui/resources", | 309 "//ui/resources", |
| 310 "//ui/shell_dialogs", | 310 "//ui/shell_dialogs", |
| 311 "//ui/snapshot", | 311 "//ui/snapshot", |
| 312 ] | 312 ] |
| 313 | 313 |
| 314 data_deps = [] | 314 data_deps = [] |
| 315 | 315 |
| 316 if (!is_chromeos) { | |
| 317 sources -= | |
| 318 [ "../browser/web_contents/touch_editable_impl_aura_browsertest.cc" ] | |
| 319 } | |
| 320 | |
| 321 if (is_win) { | 316 if (is_win) { |
| 322 sources += rebase_path( | 317 sources += rebase_path( |
| 323 content_tests_gypi_values.content_browsertests_win_sources, | 318 content_tests_gypi_values.content_browsertests_win_sources, |
| 324 ".", | 319 ".", |
| 325 "//content") | 320 "//content") |
| 326 | 321 |
| 327 # TODO(GYP) Windows support | 322 # TODO(GYP) Windows support |
| 328 # 'resource_include_dirs': [ | 323 # 'resource_include_dirs': [ |
| 329 # '<(SHARED_INTERMEDIATE_DIR)/webkit', | 324 # '<(SHARED_INTERMEDIATE_DIR)/webkit', |
| 330 # ], | 325 # ], |
| (...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 702 "//content/public/common", | 697 "//content/public/common", |
| 703 "//testing/gtest", | 698 "//testing/gtest", |
| 704 "//third_party/WebKit/public:blink", | 699 "//third_party/WebKit/public:blink", |
| 705 "//ui/base", | 700 "//ui/base", |
| 706 "//ui/gfx", | 701 "//ui/gfx", |
| 707 "//ui/gfx/geometry", | 702 "//ui/gfx/geometry", |
| 708 "//ui/gl", | 703 "//ui/gl", |
| 709 ] | 704 ] |
| 710 } | 705 } |
| 711 } | 706 } |
| OLD | NEW |