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

Side by Side Diff: gin/BUILD.gn

Issue 2906933002: [gin] Remove the traces of crypto usage from gin (Closed)
Patch Set: Created 3 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
« no previous file with comments | « no previous file | gin/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 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("//testing/test.gni") 5 import("//testing/test.gni")
6 import("//v8/gni/v8.gni") 6 import("//v8/gni/v8.gni")
7 7
8 # This is depended upon from the browser DLL on Windows, where V8 is not used, 8 # This is depended upon from the browser DLL on Windows, where V8 is not used,
9 # but features are enabled. This cannot depend on V8. 9 # but features are enabled. This cannot depend on V8.
10 component("gin_features") { 10 component("gin_features") {
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
96 96
97 defines = [ "GIN_IMPLEMENTATION" ] 97 defines = [ "GIN_IMPLEMENTATION" ]
98 98
99 public_deps = [ 99 public_deps = [
100 "//base", 100 "//base",
101 "//v8", 101 "//v8",
102 ] 102 ]
103 deps = [ 103 deps = [
104 ":gin_features", 104 ":gin_features",
105 "//base/third_party/dynamic_annotations", 105 "//base/third_party/dynamic_annotations",
106 "//crypto",
107 ] 106 ]
108 107
109 if (is_mac) { 108 if (is_mac) {
110 libs = [ "CoreFoundation.framework" ] 109 libs = [ "CoreFoundation.framework" ]
111 } 110 }
112 111
113 configs += [ "//v8:external_startup_data" ] 112 configs += [ "//v8:external_startup_data" ]
114 } 113 }
115 114
116 executable("gin_shell") { 115 executable("gin_shell") {
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 "shell/hello_world.js", 191 "shell/hello_world.js",
193 "test/file_unittests.js", 192 "test/file_unittests.js",
194 "test/gtest_unittests.js", 193 "test/gtest_unittests.js",
195 "../OWNERS", 194 "../OWNERS",
196 ] 195 ]
197 196
198 data_deps = [ 197 data_deps = [
199 ":gin_shell", 198 ":gin_shell",
200 ] 199 ]
201 } 200 }
OLDNEW
« no previous file with comments | « no previous file | gin/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698