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/buildflag_header.gni") | 5 import("//build/buildflag_header.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//gpu/vulkan/features.gni") | 8 import("//gpu/vulkan/features.gni") |
9 import("//media/media_options.gni") | 9 import("//media/media_options.gni") |
10 import("//ppapi/features/features.gni") | 10 import("//ppapi/features/features.gni") |
(...skipping 1567 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1578 "memory/memory_monitor_chromeos.cc", | 1578 "memory/memory_monitor_chromeos.cc", |
1579 "memory/memory_monitor_chromeos.h", | 1579 "memory/memory_monitor_chromeos.h", |
1580 ] | 1580 ] |
1581 } else { | 1581 } else { |
1582 sources += [ | 1582 sources += [ |
1583 "memory/memory_monitor_linux.cc", | 1583 "memory/memory_monitor_linux.cc", |
1584 "memory/memory_monitor_linux.h", | 1584 "memory/memory_monitor_linux.h", |
1585 ] | 1585 ] |
1586 } | 1586 } |
1587 | 1587 |
1588 if (!is_win) { | 1588 if (is_posix) { |
1589 sources += [ | 1589 sources += [ |
1590 "file_descriptor_info_impl.cc", | 1590 "posix_file_descriptor_info_impl.cc", |
1591 "file_descriptor_info_impl.h", | 1591 "posix_file_descriptor_info_impl.h", |
1592 ] | 1592 ] |
1593 } | 1593 } |
1594 | 1594 |
1595 if (enable_basic_printing || enable_print_preview) { | 1595 if (enable_basic_printing || enable_print_preview) { |
1596 deps += [ "//printing" ] | 1596 deps += [ "//printing" ] |
1597 } | 1597 } |
1598 | 1598 |
1599 if (!is_mac) { | 1599 if (!is_mac) { |
1600 deps += [ "//sandbox" ] | 1600 deps += [ "//sandbox" ] |
1601 } | 1601 } |
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2161 if (!is_component_build) { | 2161 if (!is_component_build) { |
2162 public_deps = [ | 2162 public_deps = [ |
2163 ":browser", | 2163 ":browser", |
2164 ] | 2164 ] |
2165 } else { | 2165 } else { |
2166 public_deps = [ | 2166 public_deps = [ |
2167 "//third_party/leveldatabase", | 2167 "//third_party/leveldatabase", |
2168 ] | 2168 ] |
2169 } | 2169 } |
2170 } | 2170 } |
OLD | NEW |