| 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 94 sources += get_target_outputs(":embed_js_in_cpp") | 94 sources += get_target_outputs(":embed_js_in_cpp") |
| 95 sources += get_target_outputs(":embed_user_data_dir_in_cpp") | 95 sources += get_target_outputs(":embed_user_data_dir_in_cpp") |
| 96 | 96 |
| 97 deps = [ | 97 deps = [ |
| 98 ":embed_extension_in_cpp", | 98 ":embed_extension_in_cpp", |
| 99 ":embed_js_in_cpp", | 99 ":embed_js_in_cpp", |
| 100 ":embed_user_data_dir_in_cpp", | 100 ":embed_user_data_dir_in_cpp", |
| 101 "//base", | 101 "//base", |
| 102 "//base/third_party/dynamic_annotations", | 102 "//base/third_party/dynamic_annotations", |
| 103 "//net", | 103 "//net", |
| 104 "//third_party/zlib:minizip", |
| 104 "//third_party/zlib:zip", | 105 "//third_party/zlib:zip", |
| 105 "//third_party/zlib:minizip", | |
| 106 "//ui/accessibility:ax_gen", | 106 "//ui/accessibility:ax_gen", |
| 107 "//ui/base", | 107 "//ui/base", |
| 108 "//ui/gfx", | 108 "//ui/gfx", |
| 109 "//ui/gfx/geometry", | 109 "//ui/gfx/geometry", |
| 110 "//url", | 110 "//url", |
| 111 ] | 111 ] |
| 112 } | 112 } |
| 113 | 113 |
| 114 # GYP version: chrome/chrome_tests.gypi:chromedriver_lib | 114 # GYP version: chrome/chrome_tests.gypi:chromedriver_lib |
| 115 # (embed_version_in_cpp action) | 115 # (embed_version_in_cpp action) |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 158 "//base", | 158 "//base", |
| 159 "//base/third_party/dynamic_annotations", | 159 "//base/third_party/dynamic_annotations", |
| 160 "//chrome/common:version_header", | 160 "//chrome/common:version_header", |
| 161 "//crypto", | 161 "//crypto", |
| 162 "//net", | 162 "//net", |
| 163 "//net:http_server", | 163 "//net:http_server", |
| 164 "//third_party/zlib", | 164 "//third_party/zlib", |
| 165 "//ui/base", | 165 "//ui/base", |
| 166 "//ui/events:dom_keycode_converter", | 166 "//ui/events:dom_keycode_converter", |
| 167 "//ui/events:events_base", | 167 "//ui/events:events_base", |
| 168 "//ui/events/ozone:events_ozone_layout", |
| 168 "//ui/gfx", | 169 "//ui/gfx", |
| 169 "//ui/gfx/geometry", | 170 "//ui/gfx/geometry", |
| 170 ] | 171 ] |
| 171 | 172 |
| 172 if (use_x11) { | 173 if (use_x11) { |
| 173 configs += [ "//build/config/linux:x11" ] | 174 configs += [ "//build/config/linux:x11" ] |
| 174 deps += [ "//ui/gfx/x" ] | 175 deps += [ "//ui/gfx/x" ] |
| 175 } | 176 } |
| 176 } | 177 } |
| 177 | 178 |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 238 ":lib", | 239 ":lib", |
| 239 "//base", | 240 "//base", |
| 240 "//base/test:run_all_unittests", | 241 "//base/test:run_all_unittests", |
| 241 "//net", | 242 "//net", |
| 242 "//net:http_server", | 243 "//net:http_server", |
| 243 "//net:test_support", | 244 "//net:test_support", |
| 244 "//testing/gtest", | 245 "//testing/gtest", |
| 245 "//url", | 246 "//url", |
| 246 ] | 247 ] |
| 247 } | 248 } |
| OLD | NEW |