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

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

Issue 1871233002: Move LatencyInfo to ui/latency_info (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix some more gyp issues Created 4 years, 7 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("//content/common/common.gni") 7 import("//content/common/common.gni")
8 import("//media/media_options.gni") 8 import("//media/media_options.gni")
9 import("//mojo/public/tools/bindings/mojom.gni") 9 import("//mojo/public/tools/bindings/mojom.gni")
10 if (is_mac) { 10 if (is_mac) {
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 "//skia", 72 "//skia",
73 "//storage/common", 73 "//storage/common",
74 "//third_party/WebKit/public:blink_minimal", 74 "//third_party/WebKit/public:blink_minimal",
75 "//third_party/boringssl", 75 "//third_party/boringssl",
76 "//third_party/icu", 76 "//third_party/icu",
77 "//third_party/libjingle", 77 "//third_party/libjingle",
78 "//third_party/webrtc/base:rtc_base", 78 "//third_party/webrtc/base:rtc_base",
79 "//ui/accessibility", 79 "//ui/accessibility",
80 "//ui/base", 80 "//ui/base",
81 "//ui/base/ime", 81 "//ui/base/ime",
82 "//ui/events/ipc",
83 "//ui/gfx", 82 "//ui/gfx",
84 "//ui/gfx/geometry", 83 "//ui/gfx/geometry",
85 "//ui/gfx/ipc", 84 "//ui/gfx/ipc",
86 "//ui/gfx/ipc/geometry", 85 "//ui/gfx/ipc/geometry",
87 "//ui/gfx/ipc/skia", 86 "//ui/gfx/ipc/skia",
88 "//ui/gl", 87 "//ui/gl",
88 "//ui/latency_info/ipc",
89 "//ui/shell_dialogs", 89 "//ui/shell_dialogs",
90 "//url", 90 "//url",
91 "//url/ipc:url_ipc", 91 "//url/ipc:url_ipc",
92 ] 92 ]
93 93
94 defines = [] 94 defines = []
95 include_dirs = [] 95 include_dirs = []
96 libs = [] 96 libs = []
97 ldflags = [] 97 ldflags = []
98 98
(...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after
238 "//components/leveldb/public/interfaces", 238 "//components/leveldb/public/interfaces",
239 "//components/mus/public/interfaces", 239 "//components/mus/public/interfaces",
240 "//content/public/common:mojo_bindings", 240 "//content/public/common:mojo_bindings",
241 "//services/shell/public/interfaces", 241 "//services/shell/public/interfaces",
242 "//skia/public/interfaces", 242 "//skia/public/interfaces",
243 "//third_party/WebKit/public:mojo_bindings", 243 "//third_party/WebKit/public:mojo_bindings",
244 "//ui/mojo/geometry:interfaces", 244 "//ui/mojo/geometry:interfaces",
245 "//url/mojo:url_mojom_origin", 245 "//url/mojo:url_mojom_origin",
246 ] 246 ]
247 } 247 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698