Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(351)

Side by Side Diff: content/test/BUILD.gn

Issue 698253004: Reland: Implement Aura side of unified touch text selection for contents (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleanup - ready for review Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after
303 "//ui/base", 303 "//ui/base",
304 "//ui/base/ime", 304 "//ui/base/ime",
305 "//ui/gfx", 305 "//ui/gfx",
306 "//ui/gfx/geometry", 306 "//ui/gfx/geometry",
307 "//ui/gl", 307 "//ui/gl",
308 "//ui/resources", 308 "//ui/resources",
309 "//ui/shell_dialogs", 309 "//ui/shell_dialogs",
310 "//ui/snapshot", 310 "//ui/snapshot",
311 ] 311 ]
312 312
313 if (!is_chromeos) {
314 sources -=
315 [ "../browser/web_contents/touch_editable_impl_aura_browsertest.cc" ]
316 }
317
318 if (is_win) { 313 if (is_win) {
319 sources += rebase_path( 314 sources += rebase_path(
320 content_tests_gypi_values.content_browsertests_win_sources, 315 content_tests_gypi_values.content_browsertests_win_sources,
321 ".", 316 ".",
322 "//content") 317 "//content")
323 318
324 # TODO(GYP) Windows support 319 # TODO(GYP) Windows support
325 # 'resource_include_dirs': [ 320 # 'resource_include_dirs': [
326 # '<(SHARED_INTERMEDIATE_DIR)/webkit', 321 # '<(SHARED_INTERMEDIATE_DIR)/webkit',
327 # ], 322 # ],
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 "//content/public/common", 691 "//content/public/common",
697 "//testing/gtest", 692 "//testing/gtest",
698 "//third_party/WebKit/public:blink", 693 "//third_party/WebKit/public:blink",
699 "//ui/base", 694 "//ui/base",
700 "//ui/gfx", 695 "//ui/gfx",
701 "//ui/gfx/geometry", 696 "//ui/gfx/geometry",
702 "//ui/gl", 697 "//ui/gl",
703 ] 698 ]
704 } 699 }
705 } 700 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698