| 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 | 7 |
| 8 content_tests_gypi_values = | 8 content_tests_gypi_values = |
| 9 exec_script("//build/gypi_to_gn.py", | 9 exec_script("//build/gypi_to_gn.py", |
| 10 [ | 10 [ |
| (...skipping 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 | 120 |
| 121 if (is_win) { | 121 if (is_win) { |
| 122 deps += [ "//third_party/iaccessible2" ] | 122 deps += [ "//third_party/iaccessible2" ] |
| 123 } | 123 } |
| 124 | 124 |
| 125 if (!is_android && !is_ios) { | 125 if (!is_android && !is_ios) { |
| 126 deps += [ "//third_party/libvpx" ] | 126 deps += [ "//third_party/libvpx" ] |
| 127 } | 127 } |
| 128 | 128 |
| 129 if (is_android) { | 129 if (is_android) { |
| 130 deps += [ "//ui/shell_dialogs" ] | 130 deps += [ |
| 131 "//ui/android", |
| 132 "//ui/shell_dialogs" |
| 133 ] |
| 131 } | 134 } |
| 132 | 135 |
| 133 if (is_win) { | 136 if (is_win) { |
| 134 deps += [ "//sandbox" ] | 137 deps += [ "//sandbox" ] |
| 135 } | 138 } |
| 136 } else { # is_ios | 139 } else { # is_ios |
| 137 sources = [ | 140 sources = [ |
| 138 "public/test/content_test_suite_base.cc", | 141 "public/test/content_test_suite_base.cc", |
| 139 "public/test/mock_notification_observer.cc", | 142 "public/test/mock_notification_observer.cc", |
| 140 "public/test/mock_resource_context.cc", | 143 "public/test/mock_resource_context.cc", |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 | 182 |
| 180 generate_jni("jni") { | 183 generate_jni("jni") { |
| 181 sources = [ | 184 sources = [ |
| 182 "../public/test/android/javatests/src/org/chromium/content/browser/test/
NestedSystemMessageHandler.java", | 185 "../public/test/android/javatests/src/org/chromium/content/browser/test/
NestedSystemMessageHandler.java", |
| 183 ] | 186 ] |
| 184 jni_package = "content/public/test" | 187 jni_package = "content/public/test" |
| 185 } | 188 } |
| 186 } | 189 } |
| 187 } # !is_ios | 190 } # !is_ios |
| 188 # TODO(GYP): Unit test targets | 191 # TODO(GYP): Unit test targets |
| OLD | NEW |