| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//gpu/vulkan/features.gni") | 7 import("//gpu/vulkan/features.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") |
| 10 import("//printing/features/features.gni") | 10 import("//printing/features/features.gni") |
| (...skipping 1534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1545 ] | 1545 ] |
| 1546 } | 1546 } |
| 1547 | 1547 |
| 1548 if (!is_win) { | 1548 if (!is_win) { |
| 1549 sources += [ | 1549 sources += [ |
| 1550 "file_descriptor_info_impl.cc", | 1550 "file_descriptor_info_impl.cc", |
| 1551 "file_descriptor_info_impl.h", | 1551 "file_descriptor_info_impl.h", |
| 1552 ] | 1552 ] |
| 1553 } | 1553 } |
| 1554 | 1554 |
| 1555 if (is_android) { |
| 1556 sources += [ |
| 1557 "nfc/nfc_host.cc", |
| 1558 "nfc/nfc_host.h", |
| 1559 ] |
| 1560 } |
| 1561 |
| 1555 if (enable_basic_printing || enable_print_preview) { | 1562 if (enable_basic_printing || enable_print_preview) { |
| 1556 deps += [ "//printing" ] | 1563 deps += [ "//printing" ] |
| 1557 } | 1564 } |
| 1558 | 1565 |
| 1559 if (!is_mac) { | 1566 if (!is_mac) { |
| 1560 deps += [ "//sandbox" ] | 1567 deps += [ "//sandbox" ] |
| 1561 } | 1568 } |
| 1562 if (!is_android) { | 1569 if (!is_android) { |
| 1563 deps += [ | 1570 deps += [ |
| 1564 "//content/browser/tracing:resources", | 1571 "//content/browser/tracing:resources", |
| (...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2137 if (!is_component_build) { | 2144 if (!is_component_build) { |
| 2138 public_deps = [ | 2145 public_deps = [ |
| 2139 ":browser", | 2146 ":browser", |
| 2140 ] | 2147 ] |
| 2141 } else { | 2148 } else { |
| 2142 public_deps = [ | 2149 public_deps = [ |
| 2143 "//third_party/leveldatabase", | 2150 "//third_party/leveldatabase", |
| 2144 ] | 2151 ] |
| 2145 } | 2152 } |
| 2146 } | 2153 } |
| OLD | NEW |