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/ui.gni") | 5 import("//build/config/ui.gni") |
6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
7 import("//ui/ozone/ozone.gni") | 7 import("//ui/ozone/ozone.gni") |
8 | 8 |
9 if (is_android) { | 9 if (is_android) { |
10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
(...skipping 390 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
401 deps += [ | 401 deps += [ |
402 "//cc", | 402 "//cc", |
403 "//ipc:test_support", | 403 "//ipc:test_support", |
404 "//mojo/edk/system", | 404 "//mojo/edk/system", |
405 "//mojo/public/cpp/bindings", | 405 "//mojo/public/cpp/bindings", |
406 "//third_party/WebKit/public:blink_headers", | 406 "//third_party/WebKit/public:blink_headers", |
407 "//ui/events/blink", | 407 "//ui/events/blink", |
408 "//ui/events/gestures/blink", | 408 "//ui/events/gestures/blink", |
409 "//ui/events/ipc", | 409 "//ui/events/ipc", |
410 "//ui/events/mojo:test_interfaces", | 410 "//ui/events/mojo:test_interfaces", |
| 411 "//ui/gfx/ipc/geometry", |
411 ] | 412 ] |
412 } | 413 } |
413 | 414 |
414 data_deps = [ | 415 data_deps = [ |
415 "//third_party/mesa:osmesa", | 416 "//third_party/mesa:osmesa", |
416 ] | 417 ] |
417 | 418 |
418 include_dirs = [ "//testing/gmock/include" ] | 419 include_dirs = [ "//testing/gmock/include" ] |
419 | 420 |
420 if (use_x11) { | 421 if (use_x11) { |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
477 generate_jar_jni("motionevent_jni_headers") { | 478 generate_jar_jni("motionevent_jni_headers") { |
478 jni_package = "ui" | 479 jni_package = "ui" |
479 classes = [ "android/view/MotionEvent.class" ] | 480 classes = [ "android/view/MotionEvent.class" ] |
480 } | 481 } |
481 | 482 |
482 generate_jar_jni("keyevent_jni_headers") { | 483 generate_jar_jni("keyevent_jni_headers") { |
483 jni_package = "ui" | 484 jni_package = "ui" |
484 classes = [ "android/view/KeyEvent.class" ] | 485 classes = [ "android/view/KeyEvent.class" ] |
485 } | 486 } |
486 } | 487 } |
OLD | NEW |