Chromium Code Reviews| 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_overrides/v8.gni") | 9 import("//build_overrides/v8.gni") |
| 10 import("//media/media_options.gni") | 10 import("//media/media_options.gni") |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 150 "//ui/compositor", | 150 "//ui/compositor", |
| 151 "//third_party/libvpx_new", | 151 "//third_party/libvpx_new", |
| 152 ] | 152 ] |
| 153 } | 153 } |
| 154 | 154 |
| 155 if (is_android) { | 155 if (is_android) { |
| 156 deps += [ | 156 deps += [ |
| 157 "//content/shell/android:copy_content_shell_assets", | 157 "//content/shell/android:copy_content_shell_assets", |
| 158 "//ui/android", | 158 "//ui/android", |
| 159 "//ui/shell_dialogs", | 159 "//ui/shell_dialogs", |
| 160 "//third_party/boringssl", | |
| 160 ] | 161 ] |
| 161 } | 162 } |
| 162 | 163 |
| 163 if (is_win) { | 164 if (is_win) { |
| 164 deps += [ "//sandbox" ] | 165 deps += [ "//sandbox" ] |
| 165 } | 166 } |
| 166 } else { # is_ios | 167 } else { # is_ios |
| 167 sources = [ | 168 sources = [ |
| 168 "public/test/content_test_suite_base.cc", | 169 "public/test/content_test_suite_base.cc", |
| 169 "public/test/mock_notification_observer.cc", | 170 "public/test/mock_notification_observer.cc", |
| (...skipping 402 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 572 "//third_party/WebKit/public:blink", | 573 "//third_party/WebKit/public:blink", |
| 573 "//third_party/icu", | 574 "//third_party/icu", |
| 574 "//third_party/leveldatabase", | 575 "//third_party/leveldatabase", |
| 575 "//third_party/libjingle", | 576 "//third_party/libjingle", |
| 576 "//ui/compositor:test_support", | 577 "//ui/compositor:test_support", |
| 577 "//ui/gl", | 578 "//ui/gl", |
| 578 "//ui/gl:test_support", | 579 "//ui/gl:test_support", |
| 579 ] | 580 ] |
| 580 } | 581 } |
| 581 | 582 |
| 582 data_deps = [ "//third_party/mesa:osmesa" ] | 583 data_deps = [ |
| 584 "//third_party/mesa:osmesa", | |
| 585 ] | |
|
davidben
2015/10/29 20:45:40
[Assuming this was gn format's fault, though I tho
svaldez
2015/10/30 15:06:14
Acknowledged.
| |
| 583 | 586 |
| 584 if (!is_win) { | 587 if (!is_win) { |
| 585 sources += [ "../browser/file_descriptor_info_impl_unittest.cc" ] | 588 sources += [ "../browser/file_descriptor_info_impl_unittest.cc" ] |
| 586 } | 589 } |
| 587 | 590 |
| 588 if (enable_plugins) { | 591 if (enable_plugins) { |
| 589 sources += | 592 sources += |
| 590 rebase_path(content_tests_gypi_values.content_unittests_plugins_sources, | 593 rebase_path(content_tests_gypi_values.content_unittests_plugins_sources, |
| 591 ".", | 594 ".", |
| 592 "//content") | 595 "//content") |
| (...skipping 199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 792 "//testing/gtest", | 795 "//testing/gtest", |
| 793 "//third_party/WebKit/public:blink", | 796 "//third_party/WebKit/public:blink", |
| 794 "//ui/base", | 797 "//ui/base", |
| 795 "//ui/gfx", | 798 "//ui/gfx", |
| 796 "//ui/gfx/geometry", | 799 "//ui/gfx/geometry", |
| 797 "//ui/gl", | 800 "//ui/gl", |
| 798 "//ui/gl:test_support", | 801 "//ui/gl:test_support", |
| 799 ] | 802 ] |
| 800 } | 803 } |
| 801 } | 804 } |
| OLD | NEW |