| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 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("//chrome/chrome_tests.gni") | 6 import("//chrome/chrome_tests.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 # GYP version: chrome/chrome_tests.gypi:automation_client_lib | 9 # GYP version: chrome/chrome_tests.gypi:automation_client_lib |
| 10 # (embed_js_in_cpp action) | 10 # (embed_js_in_cpp action) |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 } | 150 } |
| 151 if (!use_ozone) { | 151 if (!use_ozone) { |
| 152 sources -= [ "keycode_text_conversion_ozone.cc" ] | 152 sources -= [ "keycode_text_conversion_ozone.cc" ] |
| 153 } | 153 } |
| 154 | 154 |
| 155 deps = [ | 155 deps = [ |
| 156 ":automation_client_lib", | 156 ":automation_client_lib", |
| 157 ":embed_version_in_cpp", | 157 ":embed_version_in_cpp", |
| 158 "//base", | 158 "//base", |
| 159 "//base/third_party/dynamic_annotations", | 159 "//base/third_party/dynamic_annotations", |
| 160 "//chrome/common:version_header", |
| 160 "//crypto", | 161 "//crypto", |
| 161 "//net", | 162 "//net", |
| 162 "//net:http_server", | 163 "//net:http_server", |
| 163 "//third_party/zlib", | 164 "//third_party/zlib", |
| 164 "//ui/base", | 165 "//ui/base", |
| 165 "//ui/events:dom_keycode_converter", | 166 "//ui/events:dom_keycode_converter", |
| 166 "//ui/events:events_base", | 167 "//ui/events:events_base", |
| 167 "//ui/gfx", | 168 "//ui/gfx", |
| 168 "//ui/gfx/geometry", | 169 "//ui/gfx/geometry", |
| 169 ] | 170 ] |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 237 ":lib", | 238 ":lib", |
| 238 "//base", | 239 "//base", |
| 239 "//base/test:run_all_unittests", | 240 "//base/test:run_all_unittests", |
| 240 "//net", | 241 "//net", |
| 241 "//net:http_server", | 242 "//net:http_server", |
| 242 "//net:test_support", | 243 "//net:test_support", |
| 243 "//testing/gtest", | 244 "//testing/gtest", |
| 244 "//url", | 245 "//url", |
| 245 ] | 246 ] |
| 246 } | 247 } |
| OLD | NEW |