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

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

Issue 343233002: Make chrome/common compile in GN (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 6 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 | Annotate | Revision Log
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("//tools/grit/grit_rule.gni") 5 import("//tools/grit/grit_rule.gni")
6 6
7 # TODO(GYP) uncomment when this is used below. 7 # TODO(GYP) uncomment when this is used below.
8 #gypi_values = exec_script( 8 #gypi_values = exec_script(
9 # "//build/gypi_to_gn.py", 9 # "//build/gypi_to_gn.py",
10 # [ rebase_path("../chrome_common.gypi") ], 10 # [ rebase_path("../chrome_common.gypi") ],
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 #"//media/cast/cast.gyp:cast_transport", TODO(GYP) 56 #"//media/cast/cast.gyp:cast_transport", TODO(GYP)
57 "//net", 57 "//net",
58 "//skia", 58 "//skia",
59 "//third_party/icu", 59 "//third_party/icu",
60 "//third_party/libxml", 60 "//third_party/libxml",
61 "//third_party/sqlite", 61 "//third_party/sqlite",
62 "//third_party/zlib:zip", 62 "//third_party/zlib:zip",
63 "//ui/resources:resources", 63 "//ui/resources:resources",
64 "//url", 64 "//url",
65 ] 65 ]
66
67 if (!is_ios) {
68 deps += [
69 #'<(DEPTH)/apps/common/api/api.gyp:apps_api', TODO(GYP)
70 "//chrome/common/extensions/api",
71 #'<(DEPTH)/components/components.gyp:autofill_core_common', TODO(GYP)
72 #'<(DEPTH)/components/components.gyp:autofill_content_common', TODO(GYP)
73 #'<(DEPTH)/components/components.gyp:password_manager_core_common', TODO( GYP)
74 #'<(DEPTH)/components/components.gyp:signin_core_common', TODO(GYP)
75 #'<(DEPTH)/components/components.gyp:translate_content_common', TODO(GYP)
76 #'<(DEPTH)/components/nacl.gyp:nacl_common', TODO(GYP)
77 "//components/visitedlink/common",
78 #'<(DEPTH)/extensions/common/api/api.gyp:extensions_api', TODO(GYP)
79 #'<(DEPTH)/extensions/extensions.gyp:extensions_common', TODO(GYP)
80 "//ipc",
81 "//third_party/adobe/flash:flapper_version_h",
82 "//third_party/re2",
83 "//third_party/widevine/cdm:version_h",
84 ]
85 }
66 } 86 }
67 87
68 if (is_linux) { 88 if (is_linux) {
69 action("version") { 89 action("version") {
70 visibility = ":common" 90 visibility = ":common"
71 script = "//build/util/version.py" 91 script = "//build/util/version.py"
72 92
73 lastchange_path = "//build/util/LASTCHANGE" 93 lastchange_path = "//build/util/LASTCHANGE"
74 version_path = "//chrome/VERSION" 94 version_path = "//chrome/VERSION"
75 template_input_path = "chrome_version_info_posix.h.version" 95 template_input_path = "chrome_version_info_posix.h.version"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
133 153
134 deps = [ 154 deps = [
135 "//base", 155 "//base",
136 "//base/third_party/dynamic_annotations", 156 "//base/third_party/dynamic_annotations",
137 "//third_party/widevine/cdm:version_h", 157 "//third_party/widevine/cdm:version_h",
138 # TODO(GYP) 158 # TODO(GYP)
139 #'../components/components.gyp:bookmarks_common', 159 #'../components/components.gyp:bookmarks_common',
140 #'../components/nacl.gyp:nacl_switches', 160 #'../components/nacl.gyp:nacl_switches',
141 ] 161 ]
142 } 162 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698