| 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("//media/media_options.gni") | 8 import("//media/media_options.gni") | 
| 8 import("//ppapi/features/features.gni") | 9 import("//ppapi/features/features.gni") | 
| 9 import("//printing/features/features.gni") | 10 import("//printing/features/features.gni") | 
| 10 import("//third_party/WebKit/public/public_features.gni") | 11 import("//third_party/WebKit/public/public_features.gni") | 
| 11 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 12 import("//tools/ipc_fuzzer/ipc_fuzzer.gni") | 
| 12 | 13 | 
| 13 source_set("browser") { | 14 source_set("browser") { | 
| 14   # Only the public target should depend on this. All other targets (even | 15   # Only the public target should depend on this. All other targets (even | 
| 15   # internal content ones) should depend on the public one. | 16   # internal content ones) should depend on the public one. | 
| 16   visibility = [ | 17   visibility = [ | 
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 76     "//device/screen_orientation/public/interfaces", | 77     "//device/screen_orientation/public/interfaces", | 
| 77     "//device/sensors", | 78     "//device/sensors", | 
| 78     "//device/vibration", | 79     "//device/vibration", | 
| 79     "//device/vr", | 80     "//device/vr", | 
| 80     "//device/wake_lock", | 81     "//device/wake_lock", | 
| 81     "//google_apis", | 82     "//google_apis", | 
| 82     "//gpu", | 83     "//gpu", | 
| 83     "//gpu/command_buffer/client:gles2_implementation", | 84     "//gpu/command_buffer/client:gles2_implementation", | 
| 84     "//gpu/command_buffer/client:gles2_interface", | 85     "//gpu/command_buffer/client:gles2_interface", | 
| 85     "//gpu/ipc/host", | 86     "//gpu/ipc/host", | 
|  | 87     "//gpu/vulkan:features", | 
| 86     "//ipc", | 88     "//ipc", | 
| 87     "//media", | 89     "//media", | 
| 88     "//media/capture", | 90     "//media/capture", | 
| 89     "//media/capture/mojo:image_capture", | 91     "//media/capture/mojo:image_capture", | 
| 90     "//media/gpu/ipc/client", | 92     "//media/gpu/ipc/client", | 
| 91     "//media/midi", | 93     "//media/midi", | 
| 92     "//media/midi:mojo", | 94     "//media/midi:mojo", | 
| 93     "//media/mojo/interfaces", | 95     "//media/mojo/interfaces", | 
| 94     "//mojo/common", | 96     "//mojo/common", | 
| 95     "//mojo/edk/system", | 97     "//mojo/edk/system", | 
| (...skipping 1938 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 2034   if (!is_component_build) { | 2036   if (!is_component_build) { | 
| 2035     public_deps = [ | 2037     public_deps = [ | 
| 2036       ":browser", | 2038       ":browser", | 
| 2037     ] | 2039     ] | 
| 2038   } else { | 2040   } else { | 
| 2039     public_deps = [ | 2041     public_deps = [ | 
| 2040       "//third_party/leveldatabase", | 2042       "//third_party/leveldatabase", | 
| 2041     ] | 2043     ] | 
| 2042   } | 2044   } | 
| 2043 } | 2045 } | 
| OLD | NEW | 
|---|