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: BUILD.gn

Issue 2456053004: Validate origins when generating subdomain tokens (Closed)
Patch Set: Fix Windows compile error Created 4 years, 1 month 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
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # This is the root build file for GN. GN will start processing by loading this 5 # This is the root build file for GN. GN will start processing by loading this
6 # file, and recursively load all dependencies until all dependencies are either 6 # file, and recursively load all dependencies until all dependencies are either
7 # resolved or known not to exist (which will cause the build to fail). So if 7 # resolved or known not to exist (which will cause the build to fail). So if
8 # you add a new build file, there must be some path of dependencies from this 8 # you add a new build file, there must be some path of dependencies from this
9 # file to your new one or GN won't know about it. 9 # file to your new one or GN won't know about it.
10 10
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 "//ppapi/examples/video_effects", 263 "//ppapi/examples/video_effects",
264 "//ppapi/examples/video_encode", 264 "//ppapi/examples/video_encode",
265 "//printing:printing_unittests", 265 "//printing:printing_unittests",
266 "//third_party/cacheinvalidation:cacheinvalidation_unittests", 266 "//third_party/cacheinvalidation:cacheinvalidation_unittests",
267 "//third_party/codesighs", 267 "//third_party/codesighs",
268 "//third_party/pdfium/samples:pdfium_test", 268 "//third_party/pdfium/samples:pdfium_test",
269 "//tools/battor_agent", 269 "//tools/battor_agent",
270 "//tools/battor_agent:battor_agent_unittests", 270 "//tools/battor_agent:battor_agent_unittests",
271 "//tools/gn", 271 "//tools/gn",
272 "//tools/gn:gn_unittests", 272 "//tools/gn:gn_unittests",
273 "//tools/origin_trials/validate_subdomain_origin",
agrieve 2016/11/04 18:06:32 I'm guessing there's not GYP version of this, so y
chasej 2016/11/04 19:26:36 Moved to "gn_only", in an existing block for "!is_
273 "//tools/perf/clear_system_cache", 274 "//tools/perf/clear_system_cache",
274 "//ui/accessibility:accessibility_unittests", 275 "//ui/accessibility:accessibility_unittests",
275 ] 276 ]
276 } 277 }
277 278
278 if (!is_ios) { 279 if (!is_ios) {
279 # TODO(GYP): Figure out which of these should actually build on iOS, 280 # TODO(GYP): Figure out which of these should actually build on iOS,
280 # and whether there should be other targets that are iOS-only and missing. 281 # and whether there should be other targets that are iOS-only and missing.
281 deps += [ 282 deps += [
282 "//cc:cc_unittests", 283 "//cc:cc_unittests",
(...skipping 861 matching lines...) Expand 10 before | Expand all | Expand 10 after
1144 "//ui/display:display_unittests", 1145 "//ui/display:display_unittests",
1145 "//ui/events:events_unittests", 1146 "//ui/events:events_unittests",
1146 "//ui/gfx:gfx_unittests", 1147 "//ui/gfx:gfx_unittests",
1147 "//ui/gl:gl_unittests", 1148 "//ui/gl:gl_unittests",
1148 "//ui/keyboard:keyboard_unittests", 1149 "//ui/keyboard:keyboard_unittests",
1149 "//ui/touch_selection:ui_touch_selection_unittests", 1150 "//ui/touch_selection:ui_touch_selection_unittests",
1150 "//url:url_unittests", 1151 "//url:url_unittests",
1151 ] 1152 ]
1152 } 1153 }
1153 } 1154 }
OLDNEW
« no previous file with comments | « no previous file | tools/origin_trials/generate_token.py » ('j') | tools/origin_trials/validate_subdomain_origin/BUILD.gn » ('J')

Powered by Google App Engine
This is Rietveld 408576698