| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//chrome/chrome_tests.gni") | 9 import("//chrome/chrome_tests.gni") |
| 10 import("//chrome/test/base/js2gtest.gni") | 10 import("//chrome/test/base/js2gtest.gni") |
| (...skipping 1420 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1431 "//courgette:courgette_lib", | 1431 "//courgette:courgette_lib", |
| 1432 "//google_apis", | 1432 "//google_apis", |
| 1433 "//skia", | 1433 "//skia", |
| 1434 "//third_party/cacheinvalidation", | 1434 "//third_party/cacheinvalidation", |
| 1435 "//third_party/icu", | 1435 "//third_party/icu", |
| 1436 "//third_party/libxml", | 1436 "//third_party/libxml", |
| 1437 "//ui/base:test_support", | 1437 "//ui/base:test_support", |
| 1438 "//ui/gfx:test_support", | 1438 "//ui/gfx:test_support", |
| 1439 "//ui/resources", | 1439 "//ui/resources", |
| 1440 ] | 1440 ] |
| 1441 data_deps = [] | 1441 data_deps = [ "//third_party/mesa:osmesa" ] |
| 1442 | 1442 |
| 1443 # TODO(GYP) Windows stuff | 1443 # TODO(GYP) Windows stuff |
| 1444 # ['incremental_chrome_dll==1', { | 1444 # ['incremental_chrome_dll==1', { |
| 1445 # 'UseLibraryDependencyInputs': "true", | 1445 # 'UseLibraryDependencyInputs': "true", |
| 1446 | 1446 |
| 1447 if (!is_ios) { | 1447 if (!is_ios) { |
| 1448 deps += [ | 1448 deps += [ |
| 1449 ":unit_tests_js", | 1449 ":unit_tests_js", |
| 1450 "//components/audio_modem:test_support", | 1450 "//components/audio_modem:test_support", |
| 1451 "//components/autofill/content/browser/wallet:test_support", | 1451 "//components/autofill/content/browser/wallet:test_support", |
| (...skipping 556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2008 "//third_party/mojo/src/mojo/edk/system", | 2008 "//third_party/mojo/src/mojo/edk/system", |
| 2009 ] | 2009 ] |
| 2010 | 2010 |
| 2011 if (!is_android && use_ash) { | 2011 if (!is_android && use_ash) { |
| 2012 sources += rebase_path( | 2012 sources += rebase_path( |
| 2013 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, | 2013 chrome_tests_unit_gypi_values.chrome_test_support_unit_ash_sources, |
| 2014 ".", | 2014 ".", |
| 2015 "//chrome") | 2015 "//chrome") |
| 2016 } | 2016 } |
| 2017 } | 2017 } |
| OLD | NEW |