OLD | NEW |
1 :template: standard_nacl_api | 1 .. _devcycle-vs-addin: |
2 | 2 |
3 ############################ | 3 ############################ |
4 Debugging With Visual Studio | 4 Debugging with Visual Studio |
5 ############################ | 5 ############################ |
6 | 6 |
7 | 7 |
8 .. contents:: Table Of Contents | 8 .. contents:: Table Of Contents |
9 :local: | 9 :local: |
10 :backlinks: none | 10 :backlinks: none |
11 :depth: 2 | 11 :depth: 2 |
12 | 12 |
13 Whether you're porting an existing project or starting from scratch, the Native | 13 Whether you're porting an existing project or starting from scratch, the Native |
14 Client Visual Studio add-in makes it easier to set up, build, run and debug | 14 Client Visual Studio add-in makes it easier to set up, build, run and debug |
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 "environment." One of the links in the results is "Edit environment variables | 174 "environment." One of the links in the results is "Edit environment variables |
175 for your account." (You can also reach this link from the ``Control Panel`` | 175 for your account." (You can also reach this link from the ``Control Panel`` |
176 under ``User Accounts``.) Click on the link and use the buttons in the window | 176 under ``User Accounts``.) Click on the link and use the buttons in the window |
177 to create or change these user variables (the values shown below are only for | 177 to create or change these user variables (the values shown below are only for |
178 example): | 178 example): |
179 | 179 |
180 | 180 |
181 +-------------------+----------------------------------------------------------+ | 181 +-------------------+----------------------------------------------------------+ |
182 | Variable Name | Description | | 182 | Variable Name | Description | |
183 +===================+==========================================================+ | 183 +===================+==========================================================+ |
184 | NACL_SDK_ROOT | The path to the pepper directory in the SDK. | | 184 | ``NACL_SDK_ROOT`` | The path to the pepper directory in the SDK. | |
185 | | For example: ``C:\nacl_sdk\pepper_23`` | | 185 | | For example: ``C:\nacl_sdk\pepper_23`` | |
186 +-------------------+----------------------------------------------------------+ | 186 +-------------------+----------------------------------------------------------+ |
187 | CHROME_PATH | The path to the .exe file for the version of Chrome you | | 187 | ``CHROME_PATH`` | The path to the .exe file for the version of Chrome you | |
188 | | are testing with. For example: | | 188 | | are testing with. For example: | |
189 | | ``C:\Users\fred\AppData\Local\Google\Chrome | | 189 | | ``C:\Users\fred\AppData\Local\Google\Chrome | |
190 | | SxS\Application\chrome.exe`` | | 190 | | SxS\Application\chrome.exe`` | |
191 +-------------------+----------------------------------------------------------+ | 191 +-------------------+----------------------------------------------------------+ |
192 | 192 |
193 | 193 |
194 | 194 |
195 Download the add-in | 195 Download the add-in |
196 ------------------- | 196 ------------------- |
197 | 197 |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
598 functional code that is running is the same as STEP5. | 598 functional code that is running is the same as STEP5. |
599 | 599 |
600 NaCl64 Platform | 600 NaCl64 Platform |
601 ^^^^^^^^^^^^^^^ | 601 ^^^^^^^^^^^^^^^ |
602 | 602 |
603 Run the Native Client Module in the NaCl64 platform | 603 Run the Native Client Module in the NaCl64 platform |
604 You are still running the STEP6 code, but as a Native Client module rather | 604 You are still running the STEP6 code, but as a Native Client module rather |
605 than a Pepper plugin. | 605 than a Pepper plugin. |
606 | 606 |
607 .. TODO(sbc): port reference section? | 607 .. TODO(sbc): port reference section? |
OLD | NEW |