Skip to content
This repository has been archived by the owner on Jan 4, 2019. It is now read-only.

Commit

Permalink
fix for error: ‘native_mate/handle.h’ file not found
Browse files Browse the repository at this point in the history
auditors @bbondy @darkdh
  • Loading branch information
bridiver committed Aug 3, 2017
1 parent 6362e72 commit e0748be
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
4 changes: 4 additions & 0 deletions BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,10 @@ group("child_dependencies") {
source_set("common") {
public_deps = [ "atom/common" ]

public_configs = [
"build:electron_config",
]

include_dirs = [
# force this to appear before the chromium root src dir
"chromium_src",
Expand Down
5 changes: 4 additions & 1 deletion chromium_src/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ source_set("common") {
}

source_set("renderer") {
configs += [ ":chromium_src_config" ]
configs += [
"//electron/build:electron_config",
":chromium_src_config",
]

include_dirs = [
# force this to appear before the chromium root src dir
Expand Down

1 comment on commit e0748be

@darkdh
Copy link
Member

@darkdh darkdh commented on e0748be Aug 3, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++

Please sign in to comment.