Fix paths for artifacts under the new integrations/ directory.
(they were not being rewritten from upstream)
Closes #109
PiperOrigin-RevId: 277835744
diff --git a/integrations/tensorflow/compiler/TFSavedModelAdoptExports.cpp b/integrations/tensorflow/compiler/TFSavedModelAdoptExports.cpp
index a88bc32..2e29b97 100644
--- a/integrations/tensorflow/compiler/TFSavedModelAdoptExports.cpp
+++ b/integrations/tensorflow/compiler/TFSavedModelAdoptExports.cpp
@@ -12,7 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
-#include "third_party/iree/integrations/tensorflow/compiler/Passes.h"
+#include "integrations/tensorflow/compiler/Passes.h"
#include "mlir/IR/Attributes.h"
#include "mlir/IR/MLIRContext.h"
#include "mlir/Pass/Pass.h"
diff --git a/iree/compiler/Translation/Sequencer/BUILD b/iree/compiler/Translation/Sequencer/BUILD
index c3e7776..0a0404c 100644
--- a/iree/compiler/Translation/Sequencer/BUILD
+++ b/iree/compiler/Translation/Sequencer/BUILD
@@ -8,6 +8,7 @@
srcs = ["SequencerModuleTranslation.cpp"],
hdrs = ["SequencerModuleTranslation.h"],
deps = [
+ "//integrations/tensorflow/compiler:tensorflow",
"//iree/base:status",
"//iree/compiler/IR",
"//iree/compiler/IR/Sequencer",
@@ -17,7 +18,6 @@
"//iree/compiler/Utils",
"//iree/hal:executable_format",
"//iree/schemas",
- "//third_party/iree/integrations/tensorflow/compiler:tensorflow",
"@com_github_google_flatbuffers//:flatbuffers",
"@llvm//:support",
"@local_config_mlir//:IR",
diff --git a/iree/compiler/Translation/Sequencer/SequencerModuleTranslation.cpp b/iree/compiler/Translation/Sequencer/SequencerModuleTranslation.cpp
index b8dfecd..aaf5565 100644
--- a/iree/compiler/Translation/Sequencer/SequencerModuleTranslation.cpp
+++ b/iree/compiler/Translation/Sequencer/SequencerModuleTranslation.cpp
@@ -22,7 +22,7 @@
#include "flatbuffers/flatbuffers.h"
#include "flatbuffers/minireflect.h"
-#include "third_party/iree/integrations/tensorflow/compiler/Passes.h"
+#include "integrations/tensorflow/compiler/Passes.h"
#include "iree/base/status.h"
#include "iree/compiler/IR/ConfigOps.h"
#include "iree/compiler/IR/Sequencer/OpWriters.h"
diff --git a/iree/tools/BUILD b/iree/tools/BUILD
index acc622c..ce210bf 100644
--- a/iree/tools/BUILD
+++ b/iree/tools/BUILD
@@ -16,11 +16,11 @@
cc_binary(
name = "iree-opt",
deps = [
+ "//integrations/tensorflow/compiler:tensorflow",
"//iree/compiler/Transforms",
"//iree/compiler/Transforms/Interpreter",
"//iree/compiler/Transforms/Sequencer",
"//iree/compiler/Translation/SPIRV",
- "//third_party/iree/integrations/tensorflow/compiler:tensorflow",
"@llvm//:support",
"@local_config_mlir//:AffineDialectRegistration",
"@local_config_mlir//:MlirOptLib",