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/split_static_library.gni") | 9 import("//build/split_static_library.gni") |
10 import("//chrome/common/features.gni") | 10 import("//chrome/common/features.gni") |
(...skipping 1578 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1589 ] | 1589 ] |
1590 | 1590 |
1591 # Android does in-process PAC, so must link against V8 directly. Other | 1591 # Android does in-process PAC, so must link against V8 directly. Other |
1592 # platforms use OOP Mojo resolution. | 1592 # platforms use OOP Mojo resolution. |
1593 if (is_android) { | 1593 if (is_android) { |
1594 deps += [ | 1594 deps += [ |
1595 "//net:net_with_v8", | 1595 "//net:net_with_v8", |
1596 "//v8", | 1596 "//v8", |
1597 ] | 1597 ] |
1598 } else { | 1598 } else { |
1599 deps += [ "//net:net" ] | 1599 deps += [ |
| 1600 "//chrome/app/vector_icons", |
| 1601 "//net:net", |
| 1602 "//ui/vector_icons", |
| 1603 ] |
1600 } | 1604 } |
1601 | 1605 |
1602 if (is_chromeos && use_cras) { | 1606 if (is_chromeos && use_cras) { |
1603 defines += [ "USE_CRAS" ] | 1607 defines += [ "USE_CRAS" ] |
1604 } | 1608 } |
1605 | 1609 |
1606 if (toolkit_views) { | 1610 if (toolkit_views) { |
1607 deps += [ "//ui/views" ] | 1611 deps += [ "//ui/views" ] |
1608 } | 1612 } |
1609 | 1613 |
(...skipping 2916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4526 "media/pepper_cdm_test_constants.cc", | 4530 "media/pepper_cdm_test_constants.cc", |
4527 "media/pepper_cdm_test_constants.h", | 4531 "media/pepper_cdm_test_constants.h", |
4528 ] | 4532 ] |
4529 } | 4533 } |
4530 } | 4534 } |
4531 | 4535 |
4532 service_manifest("preferences_manifest") { | 4536 service_manifest("preferences_manifest") { |
4533 name = "preferences" | 4537 name = "preferences" |
4534 source = "prefs/preferences_manifest.json" | 4538 source = "prefs/preferences_manifest.json" |
4535 } | 4539 } |
OLD | NEW |