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

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

Issue 1071713004: Enable NPAPI if policy has plugin policies. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix GN Created 5 years, 8 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 | « no previous file | chrome/browser/plugins/enable_npapi_plugins_policy_handler.h » ('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 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which 9 # //build/config/android/rules.gni imports //tools/grit/grit_rule.gni, which
10 # produces a conflict for the "grit" template so we have to only include one. 10 # produces a conflict for the "grit" template so we have to only include one.
(...skipping 368 matching lines...) Expand 10 before | Expand all | Expand 10 after
379 sources += rebase_path( 379 sources += rebase_path(
380 gypi_values.chrome_browser_policy_shared_with_ios_not_chromeos_sou rces, 380 gypi_values.chrome_browser_policy_shared_with_ios_not_chromeos_sou rces,
381 ".", 381 ".",
382 "//chrome") 382 "//chrome")
383 } 383 }
384 if (is_win || is_mac || is_desktop_linux) { 384 if (is_win || is_mac || is_desktop_linux) {
385 sources += rebase_path(gypi_values.chrome_browser_policy_desktop_sources, 385 sources += rebase_path(gypi_values.chrome_browser_policy_desktop_sources,
386 ".", 386 ".",
387 "//chrome") 387 "//chrome")
388 } 388 }
389 if (enable_plugins) {
390 sources += rebase_path(gypi_values.chrome_browser_policy_plugin_sources,
391 ".",
392 "//chrome")
393 }
389 if (is_android || is_ios) { 394 if (is_android || is_ios) {
390 sources += rebase_path(gypi_values.chrome_browser_policy_mobile_sources, 395 sources += rebase_path(gypi_values.chrome_browser_policy_mobile_sources,
391 ".", 396 ".",
392 "//chrome") 397 "//chrome")
393 } else { 398 } else {
394 deps += [ 399 deps += [
395 "//chrome/browser/policy:path_parser", 400 "//chrome/browser/policy:path_parser",
396 "//net:net_browser_services", 401 "//net:net_browser_services",
397 ] 402 ]
398 } 403 }
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
1114 ] 1119 ]
1115 } 1120 }
1116 1121
1117 if (enable_wifi_bootstrapping) { 1122 if (enable_wifi_bootstrapping) {
1118 sources += [ 1123 sources += [
1119 "local_discovery/wifi/mock_wifi_manager.cc", 1124 "local_discovery/wifi/mock_wifi_manager.cc",
1120 "local_discovery/wifi/mock_wifi_manager.h", 1125 "local_discovery/wifi/mock_wifi_manager.h",
1121 ] 1126 ]
1122 } 1127 }
1123 } 1128 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/plugins/enable_npapi_plugins_policy_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698