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

Side by Side Diff: chrome/browser/ui/BUILD.gn

Issue 921953002: Split apart the PPAPI GN targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix component Created 5 years, 10 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 | « chrome/browser/chromeos/BUILD.gn ('k') | chrome/renderer/BUILD.gn » ('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 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/crypto.gni") 5 import("//build/config/crypto.gni")
6 import("//build/config/features.gni") 6 import("//build/config/features.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 8
9 gypi_values = exec_script("//build/gypi_to_gn.py", 9 gypi_values = exec_script("//build/gypi_to_gn.py",
10 [ rebase_path("../../chrome_browser_ui.gypi") ], 10 [ rebase_path("../../chrome_browser_ui.gypi") ],
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 if (enable_configuration_policy) { 168 if (enable_configuration_policy) {
169 sources += rebase_path(gypi_values.chrome_browser_ui_policy_sources, 169 sources += rebase_path(gypi_values.chrome_browser_ui_policy_sources,
170 ".", 170 ".",
171 "//chrome") 171 "//chrome")
172 deps += [ "//components/policy" ] 172 deps += [ "//components/policy" ]
173 } 173 }
174 if (enable_plugins) { 174 if (enable_plugins) {
175 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources, 175 sources += rebase_path(gypi_values.chrome_browser_ui_plugin_sources,
176 ".", 176 ".",
177 "//chrome") 177 "//chrome")
178 deps += [ "//ppapi:ppapi_ipc" ] 178 deps += [ "//ppapi/proxy:ipc" ]
179 } 179 }
180 if (safe_browsing_mode == 1) { 180 if (safe_browsing_mode == 1) {
181 defines += [ "FULL_SAFE_BROWSING" ] 181 defines += [ "FULL_SAFE_BROWSING" ]
182 deps += [ 182 deps += [
183 "//chrome/browser/safe_browsing:chunk_proto", 183 "//chrome/browser/safe_browsing:chunk_proto",
184 "//chrome/common/safe_browsing:proto", 184 "//chrome/common/safe_browsing:proto",
185 "//chrome/browser/safe_browsing:report_proto", 185 "//chrome/browser/safe_browsing:report_proto",
186 ] 186 ]
187 } 187 }
188 if (is_chromeos) { 188 if (is_chromeos) {
(...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after
518 "//chrome/browser", 518 "//chrome/browser",
519 "//content/public/browser", 519 "//content/public/browser",
520 "//content/public/common", 520 "//content/public/common",
521 "//content/test:test_support", 521 "//content/test:test_support",
522 "//net:test_support", 522 "//net:test_support",
523 "//skia", 523 "//skia",
524 "//testing/gtest", 524 "//testing/gtest",
525 "//ui/base", 525 "//ui/base",
526 ] 526 ]
527 } 527 }
OLDNEW
« no previous file with comments | « chrome/browser/chromeos/BUILD.gn ('k') | chrome/renderer/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698