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

Side by Side Diff: third_party/WebKit/Source/core/BUILD.gn

Issue 1497543003: Format all BUILD.gn with "gn format --in-place". (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-format-sort-deps
Patch Set: Rebase Created 5 years 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 | « sync/BUILD.gn ('k') | third_party/boringssl/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/chrome_build.gni") 5 import("//build/config/chrome_build.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 import("//third_party/WebKit/Source/bindings/bindings.gni") 7 import("//third_party/WebKit/Source/bindings/bindings.gni")
8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni") 8 import("//third_party/WebKit/Source/bindings/core/v8/generated.gni")
9 import("//third_party/WebKit/Source/bindings/modules/modules.gni") 9 import("//third_party/WebKit/Source/bindings/modules/modules.gni")
10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni") 10 import("//third_party/WebKit/Source/bindings/modules/v8/generated.gni")
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after
42 if (is_android && use_openmax_dl_fft) { 42 if (is_android && use_openmax_dl_fft) {
43 include_dirs += [ "//third_party/openmax_dl" ] 43 include_dirs += [ "//third_party/openmax_dl" ]
44 } 44 }
45 } 45 }
46 46
47 # GYP version: WebKit/Source/core/core.gyp:webcore_generated 47 # GYP version: WebKit/Source/core/core.gyp:webcore_generated
48 source_set("generated") { 48 source_set("generated") {
49 deps = [ 49 deps = [
50 ":make_core_generated", 50 ":make_core_generated",
51 ":prerequisites", 51 ":prerequisites",
52 "inspector:instrumentation_sources",
53 "inspector:protocol_sources",
52 "//gin", 54 "//gin",
53 "//skia", 55 "//skia",
54 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", 56 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated",
55 "//third_party/iccjpeg", 57 "//third_party/iccjpeg",
56 "//third_party/libpng", 58 "//third_party/libpng",
57 "//third_party/libwebp", 59 "//third_party/libwebp",
58 "//third_party/libxml", 60 "//third_party/libxml",
59 "//third_party/libxslt", 61 "//third_party/libxslt",
60 "//third_party/npapi", 62 "//third_party/npapi",
61 "//third_party/qcms", 63 "//third_party/qcms",
62 "//third_party/sqlite", 64 "//third_party/sqlite",
63 "inspector:instrumentation_sources",
64 "inspector:protocol_sources",
65 65
66 # FIXME: don't depend on bindings/modules http://crbug.com/358074 66 # FIXME: don't depend on bindings/modules http://crbug.com/358074
67 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", 67 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated",
68 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" , 68 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" ,
69 "//third_party/WebKit/Source/platform:make_platform_generated", 69 "//third_party/WebKit/Source/platform:make_platform_generated",
70 "//third_party/WebKit/Source/wtf", 70 "//third_party/WebKit/Source/wtf",
71 "//url", 71 "//url",
72 "//v8", 72 "//v8",
73 ] 73 ]
74 } 74 }
(...skipping 15 matching lines...) Expand all
90 "//third_party/ots", 90 "//third_party/ots",
91 "//third_party/qcms", 91 "//third_party/qcms",
92 "//third_party/snappy", 92 "//third_party/snappy",
93 "//third_party/sqlite", 93 "//third_party/sqlite",
94 "//third_party/zlib", 94 "//third_party/zlib",
95 "//url", 95 "//url",
96 "//v8", 96 "//v8",
97 ] 97 ]
98 deps = [ 98 deps = [
99 ":make_core_generated", 99 ":make_core_generated",
100 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated",
101 "inspector:instrumentation_sources", 100 "inspector:instrumentation_sources",
102 "inspector:protocol_sources", 101 "inspector:protocol_sources",
102 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated",
103 103
104 # FIXME: don't depend on bindings_modules http://crbug.com/358074 104 # FIXME: don't depend on bindings_modules http://crbug.com/358074
105 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" , 105 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" ,
106 "//third_party/WebKit/Source/platform", 106 "//third_party/WebKit/Source/platform",
107 ] 107 ]
108 108
109 public_configs = [ 109 public_configs = [
110 ":core_include_dirs", 110 ":core_include_dirs",
111 "//third_party/WebKit/Source:config", 111 "//third_party/WebKit/Source:config",
112 "//third_party/WebKit/Source:inside_blink", 112 "//third_party/WebKit/Source:inside_blink",
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
416 ] 416 ]
417 417
418 configs -= core_config_remove 418 configs -= core_config_remove
419 configs += core_config_add 419 configs += core_config_add
420 420
421 configs += [ "..:inside_blink" ] 421 configs += [ "..:inside_blink" ]
422 422
423 public_deps = [ 423 public_deps = [
424 ":make_core_generated", 424 ":make_core_generated",
425 ":prerequisites", 425 ":prerequisites",
426 "inspector:instrumentation_sources",
427 "inspector:protocol_sources",
426 "//gin", 428 "//gin",
427 "//skia", 429 "//skia",
428 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated", 430 "//third_party/WebKit/Source/bindings/core/v8:bindings_core_v8_generated",
429 "//third_party/iccjpeg", 431 "//third_party/iccjpeg",
430 "//third_party/libpng", 432 "//third_party/libpng",
431 "//third_party/libwebp", 433 "//third_party/libwebp",
432 "//third_party/libxml", 434 "//third_party/libxml",
433 "//third_party/libxslt", 435 "//third_party/libxslt",
434 "//third_party/npapi", 436 "//third_party/npapi",
435 "//third_party/qcms", 437 "//third_party/qcms",
436 "//third_party/sqlite", 438 "//third_party/sqlite",
437 "inspector:instrumentation_sources",
438 "inspector:protocol_sources",
439 439
440 # FIXME: don't depend on bindings/modules http://crbug.com/358074 440 # FIXME: don't depend on bindings/modules http://crbug.com/358074
441 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated", 441 "//third_party/WebKit/Source/bindings/modules:bindings_modules_generated",
442 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" , 442 "//third_party/WebKit/Source/bindings/modules/v8:bindings_modules_generated" ,
443 "//third_party/WebKit/Source/platform:make_platform_generated", 443 "//third_party/WebKit/Source/platform:make_platform_generated",
444 "//third_party/WebKit/Source/wtf", 444 "//third_party/WebKit/Source/wtf",
445 "//url", 445 "//url",
446 "//v8", 446 "//v8",
447 ] 447 ]
448 448
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 "$blink_core_output_dir/{{source_name_part}}.h", 1000 "$blink_core_output_dir/{{source_name_part}}.h",
1001 ] 1001 ]
1002 args = [ 1002 args = [
1003 "{{source}}", 1003 "{{source}}",
1004 rel_blink_core_gen_dir, 1004 rel_blink_core_gen_dir,
1005 bison_exe, 1005 bison_exe,
1006 ] 1006 ]
1007 1007
1008 deps = make_core_generated_deps 1008 deps = make_core_generated_deps
1009 } 1009 }
OLDNEW
« no previous file with comments | « sync/BUILD.gn ('k') | third_party/boringssl/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698