HomeSort by relevance Sort by last modified time
    Searched refs:target_os_ (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/tools/gn/
settings.cc 34 target_os_ = WIN;
36 target_os_ = MAC;
38 target_os_ = LINUX;
42 target_os_ = LINUX;
settings.h 63 bool IsMac() const { return target_os_ == MAC; }
64 bool IsLinux() const { return target_os_ == LINUX; }
65 bool IsWin() const { return target_os_ == WIN; }
67 TargetOS target_os() const { return target_os_; }
68 void set_target_os(TargetOS t) { target_os_ = t; }
109 TargetOS target_os_; member in class:Settings

Completed in 198 milliseconds