| 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 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 | 50 |
| 51 if (is_android && !use_aura) { | 51 if (is_android && !use_aura) { |
| 52 sources += [ | 52 sources += [ |
| 53 "android/shell_dialogs_jni_registrar.cc", | 53 "android/shell_dialogs_jni_registrar.cc", |
| 54 "android/shell_dialogs_jni_registrar.h", | 54 "android/shell_dialogs_jni_registrar.h", |
| 55 "select_file_dialog_android.cc", | 55 "select_file_dialog_android.cc", |
| 56 "select_file_dialog_android.h", | 56 "select_file_dialog_android.h", |
| 57 ] | 57 ] |
| 58 deps += [ | 58 deps += [ |
| 59 "//ui/android", | 59 "//ui/android", |
| 60 "//ui/android:ui_java", | |
| 61 "//ui/base:ui_base_jni_headers", | 60 "//ui/base:ui_base_jni_headers", |
| 62 ] | 61 ] |
| 63 include_dirs = [ "$root_gen_dir/ui" ] | 62 include_dirs = [ "$root_gen_dir/ui" ] |
| 64 libs = [ "jnigraphics" ] | 63 libs = [ "jnigraphics" ] |
| 65 } | 64 } |
| 66 | 65 |
| 67 if (is_mac) { | 66 if (is_mac) { |
| 68 libs = [ | 67 libs = [ |
| 69 "CoreServices.framework", | 68 "CoreServices.framework", |
| 70 "Foundation.framework", | 69 "Foundation.framework", |
| (...skipping 11 matching lines...) Expand all Loading... |
| 82 ] | 81 ] |
| 83 | 82 |
| 84 deps = [ | 83 deps = [ |
| 85 ":shell_dialogs", | 84 ":shell_dialogs", |
| 86 "//base", | 85 "//base", |
| 87 "//base/test:test_support", | 86 "//base/test:test_support", |
| 88 "//testing/gtest", | 87 "//testing/gtest", |
| 89 "//ui/base:base", | 88 "//ui/base:base", |
| 90 ] | 89 ] |
| 91 } | 90 } |
| OLD | NEW |