| 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 # TODO(rockot) bug 505926: Don't include chrome files from here. | 5 # TODO(rockot) bug 505926: Don't include chrome files from here. |
| 6 # See chrome_browser_tests_extensions_sources below | 6 # See chrome_browser_tests_extensions_sources below |
| 7 import("//chrome/chrome_tests.gni") | 7 import("//chrome/chrome_tests.gni") |
| 8 import("//extensions/extensions.gni") | 8 import("//extensions/extensions.gni") |
| 9 import("//testing/test.gni") | 9 import("//testing/test.gni") |
| 10 import("//tools/grit/grit_rule.gni") | 10 import("//tools/grit/grit_rule.gni") |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 "//third_party/mojo/src/mojo/edk/system", | 194 "//third_party/mojo/src/mojo/edk/system", |
| 195 "//third_party/mojo/src/mojo/public/cpp/bindings", | 195 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 196 ] | 196 ] |
| 197 | 197 |
| 198 data_deps = [ "//third_party/mesa:osmesa" ] | 198 data_deps = [ "//third_party/mesa:osmesa" ] |
| 199 | 199 |
| 200 if (is_win) { | 200 if (is_win) { |
| 201 deps += [ "//base/allocator" ] | 201 deps += [ "//base/allocator" ] |
| 202 } | 202 } |
| 203 | 203 |
| 204 if (is_chromeos) { | 204 if (is_chromeos_ui) { |
| 205 sources += [ | 205 sources += [ |
| 206 # TODO(rockot): There are two implementations of VpnServiceFactory, a | 206 # TODO(rockot): There are two implementations of VpnServiceFactory, a |
| 207 # stub in app_shell and a real one in Chrome. This is wrong. | 207 # stub in app_shell and a real one in Chrome. This is wrong. |
| 208 "shell/browser/api/vpn_provider/vpn_service_factory.cc", | 208 "shell/browser/api/vpn_provider/vpn_service_factory.cc", |
| 209 ] | 209 ] |
| 210 | 210 |
| 211 deps += [ "//chromeos:test_support" ] | 211 deps += [ "//chromeos:test_support" ] |
| 212 } | 212 } |
| 213 } | 213 } |
| 214 | 214 |
| (...skipping 165 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 380 "//testing/gtest", | 380 "//testing/gtest", |
| 381 "//third_party/hunspell", | 381 "//third_party/hunspell", |
| 382 "//third_party/icu", | 382 "//third_party/icu", |
| 383 "//third_party/libpng", | 383 "//third_party/libpng", |
| 384 "//third_party/zlib", | 384 "//third_party/zlib", |
| 385 "//ui/base:test_support", | 385 "//ui/base:test_support", |
| 386 "//ui/resources:ui_test_pak", | 386 "//ui/resources:ui_test_pak", |
| 387 "//ui/web_dialogs:test_support", | 387 "//ui/web_dialogs:test_support", |
| 388 ] | 388 ] |
| 389 } | 389 } |
| OLD | NEW |