| 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("//build/module_args/v8.gni") | 9 import("//build_overrides/v8.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| 11 import("//testing/test.gni") | 11 import("//testing/test.gni") |
| 12 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") | 12 import("//third_party/mojo/src/mojo/public/tools/bindings/mojom.gni") |
| 13 | 13 |
| 14 content_tests_gypi_values = | 14 content_tests_gypi_values = |
| 15 exec_script("//build/gypi_to_gn.py", | 15 exec_script("//build/gypi_to_gn.py", |
| 16 [ | 16 [ |
| 17 rebase_path("../content_tests.gypi"), | 17 rebase_path("../content_tests.gypi"), |
| 18 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", | 18 "--replace=<(SHARED_INTERMEDIATE_DIR)=$root_gen_dir", |
| 19 ], | 19 ], |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 572 "//third_party/WebKit/public:blink", | 572 "//third_party/WebKit/public:blink", |
| 573 "//third_party/icu", | 573 "//third_party/icu", |
| 574 "//third_party/leveldatabase", | 574 "//third_party/leveldatabase", |
| 575 "//third_party/libjingle", | 575 "//third_party/libjingle", |
| 576 "//ui/compositor:test_support", | 576 "//ui/compositor:test_support", |
| 577 "//ui/gl", | 577 "//ui/gl", |
| 578 "//ui/gl:test_support", | 578 "//ui/gl:test_support", |
| 579 ] | 579 ] |
| 580 } | 580 } |
| 581 | 581 |
| 582 data_deps = [ | 582 data_deps = [ "//third_party/mesa:osmesa" ] |
| 583 "//third_party/mesa:osmesa", | |
| 584 ] | |
| 585 | 583 |
| 586 if (!is_win) { | 584 if (!is_win) { |
| 587 sources += [ "../browser/file_descriptor_info_impl_unittest.cc" ] | 585 sources += [ "../browser/file_descriptor_info_impl_unittest.cc" ] |
| 588 } | 586 } |
| 589 | 587 |
| 590 if (enable_plugins) { | 588 if (enable_plugins) { |
| 591 sources += | 589 sources += |
| 592 rebase_path(content_tests_gypi_values.content_unittests_plugins_sources, | 590 rebase_path(content_tests_gypi_values.content_unittests_plugins_sources, |
| 593 ".", | 591 ".", |
| 594 "//content") | 592 "//content") |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 794 "//testing/gtest", | 792 "//testing/gtest", |
| 795 "//third_party/WebKit/public:blink", | 793 "//third_party/WebKit/public:blink", |
| 796 "//ui/base", | 794 "//ui/base", |
| 797 "//ui/gfx", | 795 "//ui/gfx", |
| 798 "//ui/gfx/geometry", | 796 "//ui/gfx/geometry", |
| 799 "//ui/gl", | 797 "//ui/gl", |
| 800 "//ui/gl:test_support", | 798 "//ui/gl:test_support", |
| 801 ] | 799 ] |
| 802 } | 800 } |
| 803 } | 801 } |
| OLD | NEW |