Skip to content

Commit ee5cec1

Browse files
committed
Move generated includes to the gen directory
1 parent f6b02f9 commit ee5cec1

File tree

3 files changed

+12
-14
lines changed

3 files changed

+12
-14
lines changed

BUILD.gn

+8-8
Original file line numberDiff line numberDiff line change
@@ -1128,7 +1128,7 @@ config("libcef_includes_config") {
11281128
# CEF generated header files that also need to be discoverable.
11291129
# These #includes from client-side code will not be prefixed with cef/.
11301130
# They will be copied to the include/ directory in the binary distribution.
1131-
"$root_out_dir/includes/cef",
1131+
"$root_gen_dir/cef",
11321132
]
11331133
}
11341134

@@ -1276,7 +1276,7 @@ template("make_pack_header") {
12761276

12771277
# Generate cef_pack_resources.h.
12781278
make_pack_header("resources") {
1279-
header = "$root_out_dir/includes/cef/include/cef_pack_resources.h"
1279+
header = "$root_gen_dir/cef/include/cef_pack_resources.h"
12801280
inc = "$root_gen_dir/cef/libcef_dll/cef_pack_resources.inc"
12811281
inputs = [
12821282
"$root_gen_dir/base/tracing/protos/grit/tracing_proto_resources.h",
@@ -1343,7 +1343,7 @@ make_pack_header("resources") {
13431343

13441344
# Generate cef_pack_strings.h.
13451345
make_pack_header("strings") {
1346-
header = "$root_out_dir/includes/cef/include/cef_pack_strings.h"
1346+
header = "$root_gen_dir/cef/include/cef_pack_strings.h"
13471347
inc = "$root_gen_dir/cef/libcef_dll/cef_pack_strings.inc"
13481348
inputs = [
13491349
"$root_gen_dir/cef/grit/cef_strings.h",
@@ -1387,7 +1387,7 @@ make_pack_header("strings") {
13871387

13881388
# Generate cef_command_ids.h.
13891389
make_pack_header("command_ids") {
1390-
header = "$root_out_dir/includes/cef/include/cef_command_ids.h"
1390+
header = "$root_gen_dir/cef/include/cef_command_ids.h"
13911391
inc = "$root_gen_dir/cef/libcef_dll/cef_command_ids.inc"
13921392
inputs = [
13931393
"//chrome/app/chrome_command_ids.h",
@@ -1403,7 +1403,7 @@ action("make_api_versions_header") {
14031403
"cef_api_untracked.json",
14041404
]
14051405
outputs = [
1406-
"$root_out_dir/includes/cef/include/cef_api_versions.h",
1406+
"$root_gen_dir/cef/include/cef_api_versions.h",
14071407
"$root_gen_dir/cef/libcef_dll/cef_api_versions.inc",
14081408
]
14091409

@@ -1418,7 +1418,7 @@ action("make_version_header") {
14181418
"VERSION.stamp",
14191419
"//chrome/VERSION",
14201420
]
1421-
outputs = [ "$root_out_dir/includes/cef/include/cef_version.h" ]
1421+
outputs = [ "$root_gen_dir/cef/include/cef_version.h" ]
14221422

14231423
args = rebase_path(outputs, root_build_dir)
14241424
}
@@ -1438,7 +1438,7 @@ action("make_config_header") {
14381438
deps = [ ":args_gn_source" ]
14391439

14401440
inputs = [ "$root_out_dir/args.gn" ]
1441-
outputs = [ "$root_out_dir/includes/cef/include/cef_config.h" ]
1441+
outputs = [ "$root_gen_dir/cef/include/cef_config.h" ]
14421442

14431443
args = rebase_path(outputs + inputs, root_build_dir)
14441444
}
@@ -1452,7 +1452,7 @@ action("make_colorids_header") {
14521452
"//components/color/color_id.h",
14531453
"//chrome/browser/ui/color/chrome_color_id.h",
14541454
]
1455-
outputs = [ "$root_out_dir/includes/cef/include/cef_color_ids.h" ]
1455+
outputs = [ "$root_gen_dir/cef/include/cef_color_ids.h" ]
14561456

14571457
args = rebase_path(outputs + inputs, root_build_dir)
14581458
}

libcef/features/BUILD.gn

+3-5
Original file line numberDiff line numberDiff line change
@@ -95,11 +95,9 @@ config("config") {
9595
# cef/include/ directory uses #includes relative to the cef/ directory.
9696
"//cef",
9797

98-
# CEF generated header files that also need to be discoverable.
99-
# These #includes from library-side code will always be prefixed with cef/.
100-
"$root_out_dir/includes",
101-
# These #includes from cef/include/ directory will not be prefixed.
102-
"$root_out_dir/includes/cef",
98+
# CEF generated header files that also need to be discoverable relative
99+
# to the cef/ directory.
100+
"$root_gen_dir/cef",
103101
]
104102
defines = [
105103
"BUILDING_CEF_SHARED",

tools/make_distrib.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -952,7 +952,7 @@ def print_error(msg):
952952
]
953953
for include in generated_includes:
954954
# Debug and Release build should be the same so grab whichever exists.
955-
rel_path = os.path.join('includes', 'cef', 'include', include)
955+
rel_path = os.path.join('gen', 'cef', 'include', include)
956956
src_path = os.path.join(build_dir_release, rel_path)
957957
if not os.path.exists(src_path):
958958
src_path = os.path.join(build_dir_debug, rel_path)

0 commit comments

Comments
 (0)