| 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 1563 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1574 "memory/memory_monitor_chromeos.cc", | 1574 "memory/memory_monitor_chromeos.cc", |
| 1575 "memory/memory_monitor_chromeos.h", | 1575 "memory/memory_monitor_chromeos.h", |
| 1576 ] | 1576 ] |
| 1577 } else { | 1577 } else { |
| 1578 sources += [ | 1578 sources += [ |
| 1579 "memory/memory_monitor_linux.cc", | 1579 "memory/memory_monitor_linux.cc", |
| 1580 "memory/memory_monitor_linux.h", | 1580 "memory/memory_monitor_linux.h", |
| 1581 ] | 1581 ] |
| 1582 } | 1582 } |
| 1583 | 1583 |
| 1584 if (!is_win) { | 1584 if (is_posix) { |
| 1585 sources += [ | 1585 sources += [ |
| 1586 "file_descriptor_info_impl.cc", | 1586 "posix_file_descriptor_info_impl.cc", |
| 1587 "file_descriptor_info_impl.h", | 1587 "posix_file_descriptor_info_impl.h", |
| 1588 ] | 1588 ] |
| 1589 } | 1589 } |
| 1590 | 1590 |
| 1591 if (enable_basic_printing || enable_print_preview) { | 1591 if (enable_basic_printing || enable_print_preview) { |
| 1592 deps += [ "//printing" ] | 1592 deps += [ "//printing" ] |
| 1593 } | 1593 } |
| 1594 | 1594 |
| 1595 if (!is_mac) { | 1595 if (!is_mac) { |
| 1596 deps += [ "//sandbox" ] | 1596 deps += [ "//sandbox" ] |
| 1597 } | 1597 } |
| (...skipping 552 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2150 if (!is_component_build) { | 2150 if (!is_component_build) { |
| 2151 public_deps = [ | 2151 public_deps = [ |
| 2152 ":browser", | 2152 ":browser", |
| 2153 ] | 2153 ] |
| 2154 } else { | 2154 } else { |
| 2155 public_deps = [ | 2155 public_deps = [ |
| 2156 "//third_party/leveldatabase", | 2156 "//third_party/leveldatabase", |
| 2157 ] | 2157 ] |
| 2158 } | 2158 } |
| 2159 } | 2159 } |
| OLD | NEW |