Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(759)

Side by Side Diff: content/browser/BUILD.gn

Issue 2950153002: Improve process launch handle sharing API. (Closed)
Patch Set: Fix Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698