diff options
-rw-r--r-- | devtools/shared/heapsnapshot/CensusUtils.js (renamed from dom/heapsnapshot/CensusUtils.js) | 0 | ||||
-rw-r--r-- | devtools/shared/heapsnapshot/DominatorTreeNode.js (renamed from dom/heapsnapshot/DominatorTreeNode.js) | 0 | ||||
-rw-r--r-- | devtools/shared/heapsnapshot/HeapAnalysesClient.js (renamed from dom/heapsnapshot/HeapAnalysesClient.js) | 0 | ||||
-rw-r--r-- | devtools/shared/heapsnapshot/HeapAnalysesWorker.js (renamed from dom/heapsnapshot/HeapAnalysesWorker.js) | 0 | ||||
-rw-r--r-- | devtools/shared/heapsnapshot/HeapSnapshotFileUtils.js (renamed from dom/heapsnapshot/HeapSnapshotFileUtils.js) | 0 | ||||
-rw-r--r-- | devtools/shared/heapsnapshot/census-tree-node.js (renamed from dom/heapsnapshot/census-tree-node.js) | 0 | ||||
-rw-r--r-- | devtools/shared/heapsnapshot/moz.build | 15 | ||||
-rw-r--r-- | devtools/shared/heapsnapshot/shortest-paths.js (renamed from dom/heapsnapshot/shortest-paths.js) | 0 | ||||
-rw-r--r-- | devtools/shared/moz.build | 1 | ||||
-rw-r--r-- | dom/heapsnapshot/moz.build | 11 |
10 files changed, 16 insertions, 11 deletions
diff --git a/dom/heapsnapshot/CensusUtils.js b/devtools/shared/heapsnapshot/CensusUtils.js index 36bdd2d820..36bdd2d820 100644 --- a/dom/heapsnapshot/CensusUtils.js +++ b/devtools/shared/heapsnapshot/CensusUtils.js diff --git a/dom/heapsnapshot/DominatorTreeNode.js b/devtools/shared/heapsnapshot/DominatorTreeNode.js index 13a847fd04..13a847fd04 100644 --- a/dom/heapsnapshot/DominatorTreeNode.js +++ b/devtools/shared/heapsnapshot/DominatorTreeNode.js diff --git a/dom/heapsnapshot/HeapAnalysesClient.js b/devtools/shared/heapsnapshot/HeapAnalysesClient.js index 98601a2b1c..98601a2b1c 100644 --- a/dom/heapsnapshot/HeapAnalysesClient.js +++ b/devtools/shared/heapsnapshot/HeapAnalysesClient.js diff --git a/dom/heapsnapshot/HeapAnalysesWorker.js b/devtools/shared/heapsnapshot/HeapAnalysesWorker.js index d07d67f80e..d07d67f80e 100644 --- a/dom/heapsnapshot/HeapAnalysesWorker.js +++ b/devtools/shared/heapsnapshot/HeapAnalysesWorker.js diff --git a/dom/heapsnapshot/HeapSnapshotFileUtils.js b/devtools/shared/heapsnapshot/HeapSnapshotFileUtils.js index abd44fc309..abd44fc309 100644 --- a/dom/heapsnapshot/HeapSnapshotFileUtils.js +++ b/devtools/shared/heapsnapshot/HeapSnapshotFileUtils.js diff --git a/dom/heapsnapshot/census-tree-node.js b/devtools/shared/heapsnapshot/census-tree-node.js index b041e77f9c..b041e77f9c 100644 --- a/dom/heapsnapshot/census-tree-node.js +++ b/devtools/shared/heapsnapshot/census-tree-node.js diff --git a/devtools/shared/heapsnapshot/moz.build b/devtools/shared/heapsnapshot/moz.build new file mode 100644 index 0000000000..9a915e4268 --- /dev/null +++ b/devtools/shared/heapsnapshot/moz.build @@ -0,0 +1,15 @@ +# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*- +# vim: set filetype=python: +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. + +DevToolsModules( + 'census-tree-node.js', + 'CensusUtils.js', + 'DominatorTreeNode.js', + 'HeapAnalysesClient.js', + 'HeapAnalysesWorker.js', + 'HeapSnapshotFileUtils.js', + 'shortest-paths.js', +) diff --git a/dom/heapsnapshot/shortest-paths.js b/devtools/shared/heapsnapshot/shortest-paths.js index 2d97b7de93..2d97b7de93 100644 --- a/dom/heapsnapshot/shortest-paths.js +++ b/devtools/shared/heapsnapshot/shortest-paths.js diff --git a/devtools/shared/moz.build b/devtools/shared/moz.build index 9dd4a20d65..e4de1d84a5 100644 --- a/devtools/shared/moz.build +++ b/devtools/shared/moz.build @@ -14,6 +14,7 @@ DIRS += [ 'discovery', 'fronts', 'gcli', + 'heapsnapshot', 'inspector', 'jsbeautify', 'layout', diff --git a/dom/heapsnapshot/moz.build b/dom/heapsnapshot/moz.build index fa9ef39154..3fb6b0552b 100644 --- a/dom/heapsnapshot/moz.build +++ b/dom/heapsnapshot/moz.build @@ -48,16 +48,5 @@ DEFINES['GOOGLE_PROTOBUF_NO_RTTI'] = True FINAL_LIBRARY = 'xul' -if CONFIG['MOZ_DEVTOOLS_SERVER']: - DevToolsModules( - 'census-tree-node.js', - 'CensusUtils.js', - 'DominatorTreeNode.js', - 'HeapAnalysesClient.js', - 'HeapAnalysesWorker.js', - 'HeapSnapshotFileUtils.js', - 'shortest-paths.js', - ) - if CONFIG['GNU_CXX']: CXXFLAGS += ['-Wno-error=shadow'] |