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

Unified Diff: ui/aura/BUILD.gn

Issue 974543002: Remove link_chrome_on_windows GN flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/app_list/BUILD.gn ('k') | ui/keyboard/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/aura/BUILD.gn
diff --git a/ui/aura/BUILD.gn b/ui/aura/BUILD.gn
index 9a330fbe805a6eddfd1b6d4c9b6bbee35ca5a38c..bcf1065d828969849ba40597853b0595fab318fe 100644
--- a/ui/aura/BUILD.gn
+++ b/ui/aura/BUILD.gn
@@ -243,63 +243,61 @@ executable("demo") {
}
}
-if (!is_win || link_chrome_on_windows) {
- executable("bench") {
- output_name = "aura_bench"
- testonly = true
+executable("bench") {
+ output_name = "aura_bench"
+ testonly = true
- sources = [
- "bench/bench_main.cc",
- ]
+ sources = [
+ "bench/bench_main.cc",
+ ]
- deps = [
- ":test_support",
- "//base",
- "//base:i18n",
- "//cc",
- "//gpu/command_buffer/client:gles2_interface",
- "//skia",
- "//third_party/icu",
- "//ui/base",
- "//ui/compositor",
- "//ui/compositor:test_support",
- "//ui/events",
- "//ui/gfx",
- "//ui/gfx/geometry",
- "//ui/gl",
- ]
+ deps = [
+ ":test_support",
+ "//base",
+ "//base:i18n",
+ "//cc",
+ "//gpu/command_buffer/client:gles2_interface",
+ "//skia",
+ "//third_party/icu",
+ "//ui/base",
+ "//ui/compositor",
+ "//ui/compositor:test_support",
+ "//ui/events",
+ "//ui/gfx",
+ "//ui/gfx/geometry",
+ "//ui/gl",
+ ]
- if (use_x11) {
- deps += [ "//ui/gfx/x" ]
- }
+ if (use_x11) {
+ deps += [ "//ui/gfx/x" ]
}
+}
- test("aura_unittests") {
- sources = [
- "gestures/gesture_recognizer_unittest.cc",
- "test/run_all_unittests.cc",
- "window_event_dispatcher_unittest.cc",
- "window_targeter_unittest.cc",
- "window_unittest.cc",
- ]
+test("aura_unittests") {
+ sources = [
+ "gestures/gesture_recognizer_unittest.cc",
+ "test/run_all_unittests.cc",
+ "window_event_dispatcher_unittest.cc",
+ "window_targeter_unittest.cc",
+ "window_unittest.cc",
+ ]
- deps = [
- ":test_support",
- "//base/allocator",
- "//base/test:test_support",
- "//skia",
- "//testing/gtest",
- "//ui/base:test_support",
- "//ui/compositor:test_support",
- "//ui/events:test_support",
- "//ui/events:gesture_detection",
- "//ui/gfx",
- "//ui/gfx/geometry",
- "//ui/gl",
- ]
+ deps = [
+ ":test_support",
+ "//base/allocator",
+ "//base/test:test_support",
+ "//skia",
+ "//testing/gtest",
+ "//ui/base:test_support",
+ "//ui/compositor:test_support",
+ "//ui/events:test_support",
+ "//ui/events:gesture_detection",
+ "//ui/gfx",
+ "//ui/gfx/geometry",
+ "//ui/gl",
+ ]
- if (is_linux) {
- deps += [ "//third_party/mesa" ]
- }
+ if (is_linux) {
+ deps += [ "//third_party/mesa" ]
}
}
« no previous file with comments | « ui/app_list/BUILD.gn ('k') | ui/keyboard/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698