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

Side by Side Diff: headless/BUILD.gn

Issue 2035653005: DevTools: split protocol.json into files per domain. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//tools/grit/grit_rule.gni") 6 import("//tools/grit/grit_rule.gni")
7 import("//tools/grit/repack.gni") 7 import("//tools/grit/repack.gni")
8 8
9 group("headless") { 9 group("headless") {
10 deps = [ 10 deps = [
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 grit("headless_lib_resources_grit") { 49 grit("headless_lib_resources_grit") {
50 source = "lib/resources/headless_lib_resources.grd" 50 source = "lib/resources/headless_lib_resources.grd"
51 outputs = [ 51 outputs = [
52 "grit/headless_lib_resources.h", 52 "grit/headless_lib_resources.h",
53 "$root_gen_dir/headless/headless_lib_resources.pak", 53 "$root_gen_dir/headless/headless_lib_resources.pak",
54 ] 54 ]
55 } 55 }
56 56
57 action("gen_devtools_client_api") { 57 action("gen_devtools_client_api") {
58 script = "//headless/lib/browser/client_api_generator.py" 58 script = "//headless/lib/browser/client_api_generator.py"
59 59 deps = [
60 "//third_party/WebKit/Source/core/inspector:protocol_version",
61 ]
60 inputs = [ 62 inputs = [
61 "//third_party/WebKit/Source/devtools/protocol.json", 63 "$root_gen_dir/blink/core/inspector/protocol.json",
62 ] 64 ]
63 65
64 outputs = [ 66 outputs = [
65 "$target_gen_dir/public/domains/accessibility.cc", 67 "$target_gen_dir/public/domains/accessibility.cc",
66 "$target_gen_dir/public/domains/accessibility.h", 68 "$target_gen_dir/public/domains/accessibility.h",
67 "$target_gen_dir/public/domains/animation.cc", 69 "$target_gen_dir/public/domains/animation.cc",
68 "$target_gen_dir/public/domains/animation.h", 70 "$target_gen_dir/public/domains/animation.h",
69 "$target_gen_dir/public/domains/application_cache.cc", 71 "$target_gen_dir/public/domains/application_cache.cc",
70 "$target_gen_dir/public/domains/application_cache.h", 72 "$target_gen_dir/public/domains/application_cache.h",
71 "$target_gen_dir/public/domains/cache_storage.cc", 73 "$target_gen_dir/public/domains/cache_storage.cc",
(...skipping 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
333 sources = [ 335 sources = [
334 "app/headless_shell.cc", 336 "app/headless_shell.cc",
335 "app/headless_shell_switches.cc", 337 "app/headless_shell_switches.cc",
336 "app/headless_shell_switches.h", 338 "app/headless_shell_switches.h",
337 ] 339 ]
338 340
339 deps = [ 341 deps = [
340 "//headless:headless_lib", 342 "//headless:headless_lib",
341 ] 343 ]
342 } 344 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698