Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 745dddeaf16483adced924b39a5ff174bbd571b2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.4"?>
<plugin>
   <extension
         id="org.eclipse.linuxtools.profiling.snapshot.launch"
         name="Profile As Snapshot"
         point="org.eclipse.debug.ui.launchShortcuts">
      <shortcut
            class="org.eclipse.linuxtools.profiling.snapshot.launch.SnapshotLaunchShortcut"
            id="org.eclipse.linuxtools.profiling.snapshot"
            label="Profile As Snapshot"
            modes="profile">

            <contextualLaunch>
            <enablement>
               <with
                     variable="selection">
                  <count
                        value="1">
                  </count>
                  <iterate>
                     <or>
                        <instanceof
                              value="org.eclipse.cdt.core.model.IBinary">
                        </instanceof>
                        <instanceof
                              value="org.eclipse.cdt.core.model.ICProject">
                        </instanceof>
                        <test
                              property="org.eclipse.cdt.launch.isExecutable">
                        </test>
                        <test
                              property="org.eclipse.cdt.launch.isCProject">
                        </test>
                        <and>
                           <instanceof
                                 value="org.eclipse.ui.IFileEditorInput">
                           </instanceof>
                           <adapt
                                 type="org.eclipse.core.resources.IResource">
                              <adapt
                                    type="org.eclipse.cdt.core.model.ICElement">
                              </adapt>
                           </adapt>
                        </and>
                     </or>
                  </iterate>
               </with>
            </enablement>
         </contextualLaunch>
      </shortcut>
   </extension>
   <extension
         point="org.eclipse.debug.ui.launchConfigurationTabGroups">
      <launchConfigurationTabGroup
            class="org.eclipse.linuxtools.profiling.snapshot.SnapshotLaunchConfigurationTabGroup"
            id="org.eclipse.linuxtools.profiling.snapshot.launchConfigurationTabGroup"
            type="org.eclipse.linuxtools.profiling.snapshot.launchConfigurationType">
      </launchConfigurationTabGroup>
   </extension>
   <extension
         point="org.eclipse.debug.core.launchConfigurationTypes">
      <launchConfigurationType
            delegate="org.eclipse.linuxtools.profiling.snapshot.launch.SnapshotLaunchConfigurationDelegate"
            id="org.eclipse.linuxtools.profiling.snapshot.launchConfigurationType"
            modes="profile"
            name="Profile As Snapshot"
            public="true">
      </launchConfigurationType>
   </extension>


</plugin>

Back to the top