/third_party/node/tools/gyp/tools/Xcode/Specifications/ |
D | gyp.xclangspec | 12 http://maxao.free.fr/xcode-plugin-interface/specifications.html 23 Identifier = "xcode.lang.gyp.keyword"; 31 Type = "xcode.syntax.keyword"; 36 Identifier = "xcode.lang.gyp.target.declarator"; 41 Type = "xcode.syntax.identifier.type"; 46 Identifier = "xcode.lang.gyp.string.singlequote"; 49 "xcode.lang.string", 50 "xcode.lang.gyp.keyword", 51 "xcode.lang.number", 59 Identifier = "xcode.lang.gyp.comma"; [all …]
|
D | gyp.pbfilespec | 8 http://maxao.free.fr/xcode-plugin-interface/specifications.html 23 Language = "xcode.lang.gyp";
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/tools/Xcode/Specifications/ |
D | gyp.xclangspec | 12 http://maxao.free.fr/xcode-plugin-interface/specifications.html 23 Identifier = "xcode.lang.gyp.keyword"; 31 Type = "xcode.syntax.keyword"; 36 Identifier = "xcode.lang.gyp.target.declarator"; 41 Type = "xcode.syntax.identifier.type"; 46 Identifier = "xcode.lang.gyp.string.singlequote"; 49 "xcode.lang.string", 50 "xcode.lang.gyp.keyword", 51 "xcode.lang.number", 59 Identifier = "xcode.lang.gyp.comma"; [all …]
|
D | gyp.pbfilespec | 8 http://maxao.free.fr/xcode-plugin-interface/specifications.html 23 Language = "xcode.lang.gyp";
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/macos/ |
D | xcode_validator_test.dart | 6 import 'package:flutter_tools/src/macos/xcode.dart'; 19 MockXcode xcode; 23 xcode = MockXcode(); 28 when(xcode.isInstalled).thenReturn(false); 29 when(xcode.xcodeSelectPath).thenReturn(null); 34 Xcode: () => xcode, 38 when(xcode.isInstalled).thenReturn(false); 39 when(xcode.xcodeSelectPath).thenReturn('/Library/Developer/CommandLineTools'); 44 Xcode: () => xcode, 48 when(xcode.isInstalled).thenReturn(true); [all …]
|
D | xcode_test.dart | 7 import 'package:flutter_tools/src/macos/xcode.dart'; 20 Xcode xcode; 26 xcode = Xcode(); 29 testUsingContext('xcodeSelectPath returns null when xcode-select is not installed', () { 30 when(mockProcessManager.runSync(<String>['/usr/bin/xcode-select', '--print-path'])) 31 .thenThrow(const ProcessException('/usr/bin/xcode-select', <String>['--print-path'])); 32 expect(xcode.xcodeSelectPath, isNull); 33 when(mockProcessManager.runSync(<String>['/usr/bin/xcode-select', '--print-path'])) 34 ….thenThrow(ArgumentError('Invalid argument(s): Cannot find executable for /usr/bin/xcode-select')); 35 expect(xcode.xcodeSelectPath, isNull); [all …]
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/macos/ |
D | xcode_validator.dart | 8 import 'xcode.dart'; 21 if (xcode.isInstalled) { 24 messages.add(ValidationMessage(userMessages.xcodeLocation(xcode.xcodeSelectPath))); 26 xcodeVersionInfo = xcode.versionText; 29 messages.add(ValidationMessage(xcode.versionText)); 31 if (!xcode.isInstalledAndMeetsVersionCheck) { 38 if (!xcode.eulaSigned) { 42 if (!xcode.isSimctlInstalled) { 49 if (xcode.xcodeSelectPath == null || xcode.xcodeSelectPath.isEmpty) {
|
D | xcode.dart | 17 Xcode get xcode => context.get<Xcode>(); 26 …_xcodeSelectPath = processManager.runSync(<String>['/usr/bin/xcode-select', '--print-path']).stdou… 74 // xcode 9.2 and above.
|
/third_party/protobuf/objectivec/DevTools/ |
D | full_mac_build.sh | 36 --skip-xcode 38 --skip-xcode-ios 40 --skip-xcode-debug 42 --skip-xcode-release 44 --skip-xcode-osx | --skip-xcode-macos 46 --skip-xcode-tvos 50 --xcode-quiet 114 --skip-xcode ) 119 --skip-xcode-ios ) 122 --skip-xcode-osx | --skip-xcode-macos) [all …]
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/ios/ |
D | ios_workflow.dart | 8 import '../macos/xcode.dart'; 18 // We need xcode (+simctl) to list simulator devices, and libimobiledevice to list real devices. 20 bool get canListDevices => xcode.isInstalledAndMeetsVersionCheck && xcode.isSimctlInstalled; 22 // We need xcode to launch simulator devices, and ideviceinstaller and ios-deploy 25 bool get canLaunchDevices => xcode.isInstalledAndMeetsVersionCheck;
|
D | ios_emulators.dart | 12 import '../macos/xcode.dart'; 47 .followedBy(<String>['-a', xcode.getSimulatorPath()]) 70 final String simulatorPath = xcode.getSimulatorPath();
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
D | xcode_test.py | 9 import gyp.generator.xcode as xcode namespace 17 self.assertEqual(xcode.EscapeXcodeDefine('$(inherited)'), '$(inherited)') 20 self.assertEqual(xcode.EscapeXcodeDefine('a b"c\\'), 'a\\ b\\"c\\\\')
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
D | xcode_test.py | 9 import gyp.generator.xcode as xcode namespace 18 self.assertEqual(xcode.EscapeXcodeDefine("$(inherited)"), "$(inherited)") 21 self.assertEqual(xcode.EscapeXcodeDefine('a b"c\\'), 'a\\ b\\"c\\\\')
|
/third_party/node/deps/npm/node_modules/node-gyp/ |
D | macOS_Catalina.md | 33 2. With the _much_ smaller Xcode Command Line Tools via `xcode-select --install` 46 6. `xcode-select -version` # Should return `xcode-select version 2370` or later. 47 7. `xcode-select -print-path` # Should return `/Applications/Xcode.app/Contents/Developer` 50 10. `sudo xcode-select --reset` # Enter root password. No output is normal. 53 ### Installing `node-gyp` using the Xcode Command Line Tools via `xcode-select --install` 54 1. If the _acid test_ has not succeeded, then try `xcode-select --install` 58 4. `xcode-select -version` # Should return `xcode-select version 2370` or later. 59 5. `xcode-select -print-path` # Should return `/Library/Developer/CommandLineTools` 62 8. `sudo xcode-select --reset` # Enter root password. No output is normal. 71 1. `sudo rm -rf $(xcode-select -print-path)` # Enter root password. No output is normal. [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/premake/patches/ |
D | iOS.patch | 8 diff -r 60bda91095e1 -r 5552b57a6b3e src/actions/xcode/_xcode.lua 9 --- a/src/actions/xcode/_xcode.lua Fri Aug 19 08:58:23 2011 -0400 10 +++ b/src/actions/xcode/_xcode.lua Tue Aug 23 23:23:54 2011 +0200 27 diff -r 60bda91095e1 -r 5552b57a6b3e src/actions/xcode/xcode_common.lua 28 --- a/src/actions/xcode/xcode_common.lua Fri Aug 19 08:58:23 2011 -0400 29 +++ b/src/actions/xcode/xcode_common.lua Tue Aug 23 23:23:54 2011 +0200
|
D | 711.patch | 10 diff --git a/src/actions/xcode/xcode_common.lua b/src/actions/xcode/xcode_common.lua 11 --- a/src/actions/xcode/xcode_common.lua 12 +++ b/src/actions/xcode/xcode_common.lua
|
D | 713.patch | 10 diff --git a/src/actions/xcode/xcode_common.lua b/src/actions/xcode/xcode_common.lua 11 --- a/src/actions/xcode/xcode_common.lua 12 +++ b/src/actions/xcode/xcode_common.lua 15 if xcode.isframework(node.path) then 62 node.id, node.name, xcode.getfiletype(node), node.name, pth, src)
|
D | 712.patch | 15 diff --git a/src/actions/xcode/xcode_common.lua b/src/actions/xcode/xcode_common.lua 16 --- a/src/actions/xcode/xcode_common.lua 17 +++ b/src/actions/xcode/xcode_common.lua
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/base/ |
D | build_test.dart | 17 import 'package:flutter_tools/src/macos/xcode.dart'; 185 when(xcode.cc(any)).thenAnswer((_) => Future<RunResult>.value(successResult)); 186 when(xcode.clang(any)).thenAnswer((_) => Future<RunResult>.value(successResult)); 211 verify(xcode.cc(argThat(contains('-fembed-bitcode')))).called(1); 212 verify(xcode.clang(argThat(contains('-fembed-bitcode')))).called(1); 213 verify(xcode.dsymutil(<String>[ 239 when(xcode.cc(any)).thenAnswer((_) => Future<RunResult>.value(successResult)); 240 when(xcode.clang(any)).thenAnswer((_) => Future<RunResult>.value(successResult)); 264 verifyNever(xcode.cc(argThat(contains('-fembed-bitcode')))); 265 verifyNever(xcode.clang(argThat(contains('-fembed-bitcode')))); [all …]
|
/third_party/skia/third_party/externals/dawn/docs/ |
D | building.md | 13 - [Xcode](https://developer.apple.com/xcode/) 12.2+. 14 - The macOS 11.0 SDK. Run `xcode-select` to check whether you have it. 16 ls `xcode-select -p`/Platforms/MacOSX.platform/Developer/SDKs 43 …he `use_system_xcode=true` in most cases. (and if you're a googler please get XCode from go/xcode).
|
/third_party/protobuf/ |
D | tests.sh | 273 --core-only --skip-xcode-osx --skip-xcode-tvos --skip-objc-conformance "$@" 277 build_objectivec_ios --skip-xcode-release 281 build_objectivec_ios --skip-xcode-debug 288 --core-only --skip-xcode-ios --skip-xcode-tvos 296 --core-only --skip-xcode-ios --skip-xcode-osx --skip-objc-conformance "$@" 300 build_objectivec_tvos --skip-xcode-release 304 build_objectivec_tvos --skip-xcode-debug
|
/third_party/boost/libs/parameter/test/ |
D | Jamfile.v2 | 516 # Python fails for xcode 8.3.0 on osx 519 # TODO: Differentiate by xcode version or by clang version 569 # This test fails for xcode 7.3.0 on osx 573 # TODO: Differentiate by xcode version or by clang version 751 # This test fails for xcode 7.3.0 and xcode 8.3.0 on osx 755 # TODO: Differentiate by xcode version or by clang version
|
/third_party/grpc/tools/internal_ci/helper_scripts/ |
D | prepare_build_macos_rc | 70 sudo xcode-select -switch /Applications/Xcode_9.2.app/Contents/Developer/ 115 sudo xcode-select -switch /Applications/Xcode_9.2.app/Contents/Developer/
|
/third_party/flatbuffers/docs/source/ |
D | SwiftUsage.md | 43 added to xcode or the path of the package you will be using. Note: sometimes xcode cant 44 and wont see the generated files, so it's better that you copy them to xcode.
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/commands/ |
D | build_aot.dart | 19 import '../macos/xcode.dart'; 214 final Xcode xcode = context.get<Xcode>(); 217 final RunResult otoolResult = await xcode.otool(<String>[ 223 final RunResult clangResult = await xcode.clang(<String>['--version']);
|