Fix net's build deps so that protos can use net_export.h

proto targets use net_export.h without depending on the target where
that header lives. That made gn check --check-generated report errors
like this one:
___________________
ERROR at //out/Default/gen/net/nqe/proto/network_id_proto.pb.h:33:11: Include not allowed.
#include "net/base/net_export.h"
          ^--------------------
It is not in any dependency of
  //net:net_nqe_proto
The include file is in the target(s):
  //net:net
which should somehow be reachable.
___________________

This fixes that problem by moving net_export.h to a separate
build target that other targets can depend on.

Bug: 655123
Change-Id: If7953e007f500adae4fe10b78e86f1a4afaecf17
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1538506
Commit-Queue: Daniel Bratell <bratell@opera.com>
Reviewed-by: Matt Menke <mmenke@chromium.org>
Cr-Commit-Position: refs/heads/master@{#644359}
1 file changed