| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 import("//ui/ozone/ozone.gni") | 8 import("//ui/ozone/ozone.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 "//third_party/WebKit/public:blink_headers", | 397 "//third_party/WebKit/public:blink_headers", |
| 398 "//ui/events/blink", | 398 "//ui/events/blink", |
| 399 "//ui/events/devices/mojo:test_interfaces", | 399 "//ui/events/devices/mojo:test_interfaces", |
| 400 "//ui/events/gestures/blink", | 400 "//ui/events/gestures/blink", |
| 401 "//ui/events/ipc", | 401 "//ui/events/ipc", |
| 402 "//ui/events/mojo:test_interfaces", | 402 "//ui/events/mojo:test_interfaces", |
| 403 "//ui/gfx/ipc/geometry", | 403 "//ui/gfx/ipc/geometry", |
| 404 ] | 404 ] |
| 405 } | 405 } |
| 406 | 406 |
| 407 data_deps = [ | 407 if (!is_android && !is_ios) { |
| 408 "//third_party/mesa:osmesa", | 408 data_deps = [ |
| 409 ] | 409 "//third_party/mesa:osmesa", |
| 410 ] |
| 411 } |
| 410 | 412 |
| 411 if (use_x11) { | 413 if (use_x11) { |
| 412 sources += [ | 414 sources += [ |
| 413 "devices/x11/device_data_manager_x11_unittest.cc", | 415 "devices/x11/device_data_manager_x11_unittest.cc", |
| 414 "x/events_x_unittest.cc", | 416 "x/events_x_unittest.cc", |
| 415 ] | 417 ] |
| 416 configs += [ "//build/config/linux:x11" ] | 418 configs += [ "//build/config/linux:x11" ] |
| 417 deps += [ | 419 deps += [ |
| 418 "//ui/events/devices/x11", | 420 "//ui/events/devices/x11", |
| 419 "//ui/events/x", | 421 "//ui/events/x", |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 468 generate_jar_jni("motionevent_jni_headers") { | 470 generate_jar_jni("motionevent_jni_headers") { |
| 469 jni_package = "ui" | 471 jni_package = "ui" |
| 470 classes = [ "android/view/MotionEvent.class" ] | 472 classes = [ "android/view/MotionEvent.class" ] |
| 471 } | 473 } |
| 472 | 474 |
| 473 generate_jar_jni("keyevent_jni_headers") { | 475 generate_jar_jni("keyevent_jni_headers") { |
| 474 jni_package = "ui" | 476 jni_package = "ui" |
| 475 classes = [ "android/view/KeyEvent.class" ] | 477 classes = [ "android/view/KeyEvent.class" ] |
| 476 } | 478 } |
| 477 } | 479 } |
| OLD | NEW |