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 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 156 "//ui/compositor", | 156 "//ui/compositor", |
| 157 "//third_party/libvpx_new", | 157 "//third_party/libvpx_new", |
| 158 ] | 158 ] |
| 159 } | 159 } |
| 160 | 160 |
| 161 if (is_android) { | 161 if (is_android) { |
| 162 deps += [ | 162 deps += [ |
| 163 "//content/shell/android:copy_content_shell_assets", | 163 "//content/shell/android:copy_content_shell_assets", |
| 164 "//ui/android", | 164 "//ui/android", |
| 165 "//ui/shell_dialogs", | 165 "//ui/shell_dialogs", |
| 166 "//third_party/boringssl", | |
|
davidben
2015/11/04 00:17:38
Is this needed?
svaldez
2015/11/04 16:55:52
Done.
| |
| 166 ] | 167 ] |
| 167 } | 168 } |
| 168 | 169 |
| 169 if (is_win) { | 170 if (is_win) { |
| 170 deps += [ "//sandbox" ] | 171 deps += [ "//sandbox" ] |
| 171 } | 172 } |
| 172 } else { # is_ios | 173 } else { # is_ios |
| 173 sources = [ | 174 sources = [ |
| 174 "public/test/content_test_suite_base.cc", | 175 "public/test/content_test_suite_base.cc", |
| 175 "public/test/mock_notification_observer.cc", | 176 "public/test/mock_notification_observer.cc", |
| (...skipping 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 836 "//gpu/blink", | 837 "//gpu/blink", |
| 837 "//testing/gtest", | 838 "//testing/gtest", |
| 838 "//third_party/WebKit/public:blink", | 839 "//third_party/WebKit/public:blink", |
| 839 "//ui/base", | 840 "//ui/base", |
| 840 "//ui/gfx", | 841 "//ui/gfx", |
| 841 "//ui/gfx/geometry", | 842 "//ui/gfx/geometry", |
| 842 "//ui/gl", | 843 "//ui/gl", |
| 843 "//ui/gl:test_support", | 844 "//ui/gl:test_support", |
| 844 ] | 845 ] |
| 845 } | 846 } |
| OLD | NEW |