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

Side by Side Diff: BUILD.gn

Issue 2750463006: ChromePrompt Mojo IPC interface (Closed)
Patch Set: Standard directory layout Created 3 years, 9 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
« no previous file with comments | « .gitignore ('k') | DEPS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2017 The Chromium Authors. All Rights Reserved. 1 # Copyright 2017 The Chromium Authors. All Rights Reserved.
2 2
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 # This is the root build file for GN. GN will start processing by loading this 6 # This is the root build file for GN. GN will start processing by loading this
7 # file, and recursively load all dependencies until all dependencies are either 7 # file, and recursively load all dependencies until all dependencies are either
8 # resolved or known not to exist (which will cause the build to fail). So if 8 # resolved or known not to exist (which will cause the build to fail). So if
9 # you add a new build file, there must be some path of dependencies from this 9 # you add a new build file, there must be some path of dependencies from this
10 # file to your new one or GN won't know about it. 10 # file to your new one or GN won't know about it.
11 # In GN, a "group" is a dummy target that just lists other targets. 11 # In GN, a "group" is a dummy target that just lists other targets.
12 12
13 group("all") { 13 group("all") {
14 deps = [ 14 deps = [
15 "//chrome_cleaner/public/interfaces",
15 ] 16 ]
16 } 17 }
OLDNEW
« no previous file with comments | « .gitignore ('k') | DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698