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

Side by Side Diff: chrome/BUILD.gn

Issue 1070253002: Allow widevinecdmadapter to be built in Chromium with GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: change todos 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/test/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/features.gni") 5 import("//build/config/features.gni")
6 import("//build/config/locales.gni") 6 import("//build/config/locales.gni")
7 import("//build/config/ui.gni") 7 import("//build/config/ui.gni")
8 import("//chrome/chrome_repack_locales.gni") 8 import("//chrome/chrome_repack_locales.gni")
9 import("//chrome/version.gni") 9 import("//chrome/version.gni")
10 10
(...skipping 125 matching lines...) Expand 10 before | Expand all | Expand 10 after
136 } else { # Non-Mac. 136 } else { # Non-Mac.
137 deps += [ 137 deps += [
138 ":packed_extra_resources", 138 ":packed_extra_resources",
139 ":packed_resources", 139 ":packed_resources",
140 "//components/startup_metric_utils", 140 "//components/startup_metric_utils",
141 141
142 # Precompiled plugins that need to get copied to the output directory. 142 # Precompiled plugins that need to get copied to the output directory.
143 # On Mac, internal plugins go inside the framework, so these 143 # On Mac, internal plugins go inside the framework, so these
144 # dependencies are on chrome.dll. 144 # dependencies are on chrome.dll.
145 "//third_party/adobe/flash:flapper_binaries", 145 "//third_party/adobe/flash:flapper_binaries",
146 "//third_party/widevine/cdm:adapter", 146 "//third_party/widevine/cdm:widevinecdmadapter",
147 ] 147 ]
148 # TODO(GYP) some stuff from GYP including chrome_multiple_dll. 148 # TODO(GYP) some stuff from GYP including chrome_multiple_dll.
149 } 149 }
150 150
151 if (is_linux && enable_plugins) { 151 if (is_linux && enable_plugins) {
152 deps += [ "//pdf" ] 152 deps += [ "//pdf" ]
153 } 153 }
154 } 154 }
155 } # !is_android 155 } # !is_android
156 156
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 742
743 args = [ 743 args = [
744 rebase_path(infile, root_build_dir), 744 rebase_path(infile, root_build_dir),
745 rebase_path(outfile, root_build_dir), 745 rebase_path(outfile, root_build_dir),
746 "-e s/@@NAME@@/$name/", 746 "-e s/@@NAME@@/$name/",
747 "-e s/@@FILENAME@@/$filename/", 747 "-e s/@@FILENAME@@/$filename/",
748 "-e s/@@CONFDIR@@/$confdir/", 748 "-e s/@@CONFDIR@@/$confdir/",
749 ] 749 ]
750 } 750 }
751 } 751 }
OLDNEW
« no previous file with comments | « no previous file | chrome/test/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698