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 1573 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1584 "memory/memory_monitor_chromeos.cc", | 1584 "memory/memory_monitor_chromeos.cc", |
1585 "memory/memory_monitor_chromeos.h", | 1585 "memory/memory_monitor_chromeos.h", |
1586 ] | 1586 ] |
1587 } else { | 1587 } else { |
1588 sources += [ | 1588 sources += [ |
1589 "memory/memory_monitor_linux.cc", | 1589 "memory/memory_monitor_linux.cc", |
1590 "memory/memory_monitor_linux.h", | 1590 "memory/memory_monitor_linux.h", |
1591 ] | 1591 ] |
1592 } | 1592 } |
1593 | 1593 |
1594 if (!is_win) { | 1594 if (is_posix) { |
1595 sources += [ | 1595 sources += [ |
1596 "file_descriptor_info_impl.cc", | 1596 "posix_file_descriptor_info_impl.cc", |
1597 "file_descriptor_info_impl.h", | 1597 "posix_file_descriptor_info_impl.h", |
1598 ] | 1598 ] |
1599 } | 1599 } |
1600 | 1600 |
1601 if (enable_basic_printing || enable_print_preview) { | 1601 if (enable_basic_printing || enable_print_preview) { |
1602 deps += [ "//printing" ] | 1602 deps += [ "//printing" ] |
1603 } | 1603 } |
1604 | 1604 |
1605 if (!is_mac) { | 1605 if (!is_mac) { |
1606 deps += [ "//sandbox" ] | 1606 deps += [ "//sandbox" ] |
1607 } | 1607 } |
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2167 if (!is_component_build) { | 2167 if (!is_component_build) { |
2168 public_deps = [ | 2168 public_deps = [ |
2169 ":browser", | 2169 ":browser", |
2170 ] | 2170 ] |
2171 } else { | 2171 } else { |
2172 public_deps = [ | 2172 public_deps = [ |
2173 "//third_party/leveldatabase", | 2173 "//third_party/leveldatabase", |
2174 ] | 2174 ] |
2175 } | 2175 } |
2176 } | 2176 } |
OLD | NEW |